body{
    color: white;
    background-color: #242424;
    text-align: center;
    font-family: system-ui, sans-serif;
}

h1{
    display: inline-block;
    transition: transform 1s;
}

h1:hover{
    transform: scale(2);
    animation: rgb 2.5s infinite alternate;

}

@keyframes rgb {
    0% {
        color: rgb(255, 0, 0);
    }
    16% {
        color: rgb(0, 255, 0);
    }
    32% {
        color: rgb(0, 0, 255);
    }
    48% {
        color: rgb(255, 255, 0);
    }
    64% {
        color: rgb(255, 0, 255);
    }
    80% {
        color: rgb(0, 255, 255);
    }
    100% {
        color: rgb(255, 255, 255);
    }
}

nav{
   padding: 0;
}

ul{
    display: inline-flex;
    justify-content: center; /*Se te alinean horizontalmente los hijos, acordate Julián*/
    flex-direction: column;
    padding-left: 0;
    list-style: none;
}

li{
    background-color: whitesmoke;
    margin-bottom:10px;
    border: 2px solid black;
    border-radius: 1rem;
    padding: 15px;
    transition: transform 0.5s;
}

li:hover{
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.8);
}

a{
    font-weight: bold;
    color: black;
    text-decoration: none;
}

a:hover{
    color: red;
}