* {
    margin: 0;
    padding: 0;
    font-family: roboto;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vh;
    background-color: rgb(240, 188, 169);
}

.header {
    margin: auto;
    font-weight: bold;
    padding: 5vh;
    align-items: center;
    color: rgb(72, 96, 119);
}

.button-hidden {
    display: none;
}

.button:hover {
    transform: scale(1.1);
    transition: transform 250ms ease-in-out;
}

.button {
    align-items: center;
    margin: auto;
    padding: 5px 15px 5px 15px;
    border-radius: 8px;
    border: solid 2px rgb(130, 153, 174);
    background-color: rgb(242, 242, 242);
    color: rgb(72, 96, 119);
    font-size: medium;
    transition: transform 450ms;
}



.grid-container {
    width: 550px;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 2%;
    background-color: rgb(230, 132, 132);
    padding: 5px;
}

.grid-square {
    aspect-ratio: 1/1;
    border-radius: 10%;
    background-color: rgb(255, 255, 255);
    flex-grow: 0;
}
