html, body{
    height: 100%;
    background-color: darkcyan;
    color: beige;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
#Miku{
    border-radius: 25px;
}
footer{
    padding: 10px;
    position: relative;
    top: 10%;
}
.logo{
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 25px;
}
img{
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
hr{
    width: 50%;
}
li{
    padding: 10px;
}
a{
    color: lightcyan;
}
a:hover{
    color: red;
}
.container{
    display: flex;
    justify-content: center;
}
.container div{
    width: 50%;
    height: 50%;
}
.welcome{
    text-shadow: 2px 2px 2px black;
}
.welcome:hover{
    color: red;
}
.animation{
    animation-name: textAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes textAnimation{
    1% {color: yellow;}
    10% {color: lightcoral;}
    50% {color: white;}
}