
.page {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    max-width: 70vw;
    margin: auto;
    }

.page > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 32px;


    }



.button {
    height: 164px;
    width: 164px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #DDDDDD;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 16px #DDDDDD;
    color: #AF0909;
    font-weight: bold;
    background-color: #EEEEEE;
    }

@media screen and (max-width: 700px) {
    .page {
        max-width: 100vw;
    }

    .page > div {
        flex-direction: column;
    }


}
