@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;500;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    overflow-x: hidden;
}

section {
    width: 600px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.05;
    text-align: left;
}

h2 {
    font-size: 3.5rem;
    line-height: 1.05;
    text-align: center;
}

p {
    font-size: 1.125rem;
    line-height: 1.2;
}

.title-block {
    width: 600px;
    height: 210px;
    background-color: rgb(102, 96, 221);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    color: rgb(255, 255, 255);
}

.answer-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 16px 0 23px 0;
}

.answer-block {
    width: 286px;
    height: 290px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.07) 0 0 0 1px;
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.answer-block img {
    width: 100%;
    height: 75%;
}

.answer-block p {
    font-size: 11px;
    font-style: italic;
}

.answer-block h3 {
    margin-bottom: 5px;
}

.answer-block a {
    color: rgb(137, 137, 137);
}

.result-block {
    width: 600px;
    height: 300px;
    background-color: rgb(255, 61, 158);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.result-block img {
    width: 40%;
    height: 60%;
    border-radius: 7px;
}

.game-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

@media screen and (max-width: 425px) {
    section {
        width: 280px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .title-block {
        width: 280px;
        height: 120px;
    }

    .answer-block img {
        width: 100%;
    }

    .result-block {
        width: 280px;
        height: 170px;
    }
}