@keyframes rgb {
    0%{
        color: turquoise;
        
    }
    12.5%{
       color: rgb(64, 75, 224);
    }
    25%{
        color: rgb(140, 0, 255);
     }
    37.5%{
        color:rgb(212, 0, 255) ;
    }
    50%{
        color: rgb(255, 0, 128);
        
    }
    62.5%{
      color: rgb(212, 0, 255);
    }
    75%{
        color: rgb(140, 0, 255);
    }
    87.2%{
        color: rgb(64, 75, 224);
    }
    100%{
       color: turquoise;
    }
}
#idk{
    font-size: 14px;
    max-width: 150px;
}
#cont{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    margin-top: 35vh;
}
a{
    max-width:300px;
    font-size: 25px;
    text-decoration: none;
    color: white;
    margin: 20px;
    padding: 10px 20px;
    
}
a:hover{
    color: black;
    background-color:cyan ;
}
body{
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    background-color: black;
}
h1{
    font-size: 100px;
    color: white;
    font-weight: bold;
    animation: rgb 60s linear 0s infinite;
}
