body{
    background-color: #ED4C57;
}
#container{
    width: max-content;
    padding: 10px;
    padding-right: 15%;!important;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 25px;
    gap: 10px;

}
.el{
    color: black;
    text-decoration: none;
    padding: 10px;
    width: max-content;
    font-family: cursive;
    font-size: 3em;
}
#nav{
    width: max-content;
    background-color: orange;
    border-radius: 15px;
    padding: 5px;
    margin: 10px;
    font-family: cursive;
    font-size: 3.5em;
}
.el:hover{
    cursor: pointer;
    border-radius: 20px;
    background-color: yellow;
    transition: background-color 1s ease;
}
.el:active{
    transform: scale(1.03,1.02);
}
