@font-face {
    font-family: 'poppinsextralight';
    src: url('fonts/poppins-extralight-webfont.woff2') format('woff2'),
         url('fonts/poppins-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsregular';
    src: url('fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'poppinsregular';
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #ffe5b4;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

.text {
    margin: 0px 50px;
}

.choice {
    aspect-ratio: 1 / 1;
    margin: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button {
    border-radius: 5px;
    background: none;
    padding: 0;
}

button > img {
    display: block;
    aspect-ratio: 1 / 1;
    width: 250px;
    border-radius: 5px;
    cursor: pointer;
}

@media only screen and (max-width: 1029px) {
    h1 {
        font-size: medium;
    }
    h2 {
        font-size: medium;
    }
    button > img {
        aspect-ratio: 1 / 1;
        width: 150px;
    }
    .choice {
        aspect-ratio: 1 / 1;
        margin: 0 20px;
    }
    .text {
        margin: 0px 20px;
    }
}

@media only screen and (max-width: 583px) {
    h1 {
        font-size: small;
    }
    h2 {
        font-size: small;
    }
    button > img {
        aspect-ratio: 1 / 1;
        width: 100px;
    }
    .choice {
        aspect-ratio: 1 / 1;
        margin: 0 20px;
    }
    .text {
        margin: 0px 20px;
    }
}

@media only screen and (max-height: 393px) {
    button > img {
        aspect-ratio: 1 / 1;
        width: 150px;
    }
}