body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
    display: flex;
    flex: 1;
    flex-direction: column;

    margin: 0px;
    height: 100vh;
}

.header, .footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #1F2937;
    color: white;
}

.content {
    text-align: center;
    background-color: white;
    
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-self: center;
    justify-content: flex-start;

    padding: 24px;
    padding-top: 48px;
}

a {
    color: white;
}

.gridSection {
    display: flex;
    
    align-content: center;
    justify-content: center;
}

.gridContainer {
    height: 100%;
    width: 100%;

    max-height: 70vh;
    max-width: 70vh;
    aspect-ratio: 1/1;

    border: 1px solid black;
    background-color: silver;
}

.gridRow {
    display:flex;
    flex: 1;

    justify-content: space-around;
    align-content: space-around;

    width: 100%;
}

.gridSquare {
    background-color: silver;

    display: flex;
    flex: 1;

    justify-content: center;
    align-content: center;
    
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1/1;

    font-size: 8px;

    background-color: silver;
    border: 1px solid gray;
}

button {
    margin-top: 36px;
    padding: 12px 24px;

    border-radius: 12px;
    border: 0px;
    text-decoration: none;

    color: white;
    background-color: rgb(75, 132, 255);
    text-align: center;
    font-size: 16px;
    font-weight: bold;

    width: 140px;
}

.buttonOff {
    color: white;
    background-color: rgb(173, 173, 173);
}