* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: rgb(200, 160, 100);
    margin: 0px 5vw;
    display: grid;
    grid-template-areas:
     "header header"
     "grid sidebar";
    grid-template-columns: 3fr 1fr;
}

header {
    grid-area: header;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5vh;
    margin-top: 2vh;
}

main {
    grid-area: grid;
    height: 70vh;
    aspect-ratio: 1 / 1;
    border: 3px solid black;
    margin: auto;
    filter: drop-shadow(4px 4px 4px black);

    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
}

.bingoSquare {
    border: 1px solid black;
    width: 100%;
    height: 100%;

    padding: 1em;
    text-align: center;
    background-color: rgba(255, 200, 97, 1);
}

section {
    grid-area: sidebar;
    width: 100%;
    height: 60vh;
    margin: 2vh auto;

    background-color: rgba(20, 20, 20, 1);
    color: white;
    padding: 2em;
    border: 5px solid rgba(255, 200, 97, 1);
    filter: drop-shadow(4px 4px 4px black);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

h2, h3 {
    margin: 0px;
}

h2 {
    margin-top: 3em;
}

#descriptionBox {
    width: 100%;
    padding: 1em;
}


