@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

.container{
    background-color: grey;
    width: 90%;
    margin: auto;
    padding: 1em;
    display: flex;
    font-family: 'arial';
    height: 94vh;
}
.aside{
    background-color: white;
    width: auto;
    padding: 0.5em 1em;
    border-radius: 7px;
    font-size: 1.25em;
}
h1{
    text-align: center;
    font-size: 2.5em;
}
hr{
    width: 90%;
    border: 2px solid;
}
h1 > #subtitle{
    font-size: 0.6em;
    text-align: center;
}
#cursor{
    animation: blink 1s step-end infinite;
}
@keyframes blink{
    from, to{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
}
.character-holder{
    background-color: white;
    display: block;
    border-radius: 7px;
    width: 64%;
    height: 100%;
    margin: auto;
    text-align: center;
}
.character-holder > .row{
    display: flex;
}
.character {
    margin: auto;
    text-align: center;
}
a > img{
    border-radius: 7%;
    width: 180px;
    transition: 0.2s all ease-in-out;
}
a > img:hover{
    width: 185px;
    transition: 0.2s all ease-in-out;
}
a, a:visited{
    color: black;
}
@media only screen and (max-width: 430px) {
    .container{
        display: block;
    }
    .updates{
        overflow-y: scroll;
        height: 10em
    }
    h1{
        font-size: 1.75em;
    }
    .character-holder{
        width: auto;
    }
    a > img{
        width: 90px;
    }
}
