a{
    color: black; 
    transition: opacity 0.3s ease-in-out; 
}

a:hover {
    opacity: 0.5;
}

.large{
    transition: transform 0.1s
}

.large:hover{
    transform: scale(1.3);
}

.title{
    animation-name: title;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 0.5s;
}

@keyframes title{
    0% {color:white;}
    50%{color: rgb(255, 173, 248);}
    70% {color:aqua;}
    100% {color:rgb(255, 255, 255)}
    
}


