body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8e102;
}

#container {
    display: grid;
    justify-content: flex-start;
    height: 90%;
    width: 90%;
    max-width: 100%;
    background-color: white;
    padding: 2vmin;
    grid-template-rows: 1fr;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "canvas canvas canvas infoBox"
                          "canvas canvas canvas infoBox"
                          "canvas canvas canvas infoBox";
}

#canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

#infoBox {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    border-style: solid;
    border-color: black;
    text-align: center;
}

h2 {
    margin: 3px;
    font-family: 'Berkshire Swash', cursive;
    font-size: 4.5vmin;
    font-style: bold;
    text-align: center;
}

img {
    max-width: 20%;
    align-self: center;
}

#intro {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: calc(8px + 0.390625vw);
    padding: 8%;
    text-align: center;
}

.directions {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: calc(8px + 0.390625vw);
    text-align: center;
    margin-top: -4%;
}

.timer {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    /* font-size: 3vmin; */
    font-size: calc(12px + 0.390625vw);
}

button {
    background-color: #4CAF50;
    border: 0;
    border-radius: 56px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: 'Berkshire Swash', cursive;
    font-size: 2.8vmin;
    padding: 8% 15%;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
}

button:hover {
    background-color: #217224;
    transform: scale(1.05);
}

#tryAgainButton {
    background-color: #24a0ed;
    border: 0;
    border-radius: 56px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: 'Berkshire Swash', cursive;
    font-size: 2.8vmin;
    padding: 8% 15%;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
}

#tryAgainButton:hover {
    background-color: #0f8bd9;
    transform: scale(1.05);
}



