*{
    margin: 0;
    padding: 0;
    font-family: gadugi, sans-serif;
    background-color: #4b66b1;
    color: #fff;
}
body{
    height: 100vh;
    display: grid;
    justify-items: center;
    grid-template-rows: 600px auto;
}
.main{
    text-align: center;
}
.question{
    margin-top: 16px;
    align-self: center;
}
.answer{
    font-size: 272px;
    font-weight: bold;
    text-align: center;
}
.elaboration{
    font-size: 1.3em;
    font-weight: bold;
    max-width: 715px;
    margin-bottom: 32px;
}
.footer{
    margin-bottom: 64px;
    font-size: 0.93em;
    font-weight: bold;
    align-self: start;
    text-align: center;
}

@media(max-width: 830px){
    body{
        height: 100%;
    }
    .question{
        font-size: 1.2em;
        align-self: center;
    }
    .answer{
        font-size: 272px;
        font-weight: bold;
        text-align: center;
    }
    .elaboration{
        font-size: 1.1em;
        font-weight: bold;
    }
    .footer{
        font-size: 0.7em;
        margin-bottom: 0px;
        align-self: end;
    }
}