html,
body {
    --bordercolor: wheat;
    --pageBackground: #1d1d1d;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--pageBackground);
    font-family: 'Roboto', sans-serif;
}

.upperLeft {
    border-left: 0px;
    border-top: 0px;
    border-right: 2px solid var(--bordercolor);
    border-bottom: 2px solid var(--bordercolor);
}
/* lol */

.upperCenter {
    border-left: 2px solid var(--bordercolor);
    border-top: 0px;
    border-right: 2px solid var(--bordercolor);
    border-bottom: 2px solid var(--bordercolor);
}

.upperRight {
    border-left: 2px solid var(--bordercolor);
    border-top: 0px;
    border-right: 0px;
    border-bottom: 2px solid var(--bordercolor);
}

.middleLeft {
    border-left: 0px;
    border-top: 2px solid var(--bordercolor);
    border-right: 2px solid var(--bordercolor);
    border-bottom: 2px solid var(--bordercolor);
}

.middleCenter {
    border: 2px solid var(--bordercolor);
}

.middleRight {
    border-left: 2px solid var(--bordercolor);
    border-top: 2px solid var(--bordercolor);
    border-right: 0px;
    border-bottom: 2px solid var(--bordercolor);
}

.bottomLeft {
    border-left: 0px;
    border-top: 2px solid var(--bordercolor);
    border-right: 2px solid var(--bordercolor);
    border-bottom: 0px;
}

.bottomCenter {
    border-left: 2px solid var(--bordercolor);
    border-top: 2px solid var(--bordercolor);
    border-right: 2px solid var(--bordercolor);
    border-bottom: 0px;
}

.bottomRight {
    border-left: 2px solid var(--bordercolor);
    border-top: 2px solid var(--bordercolor);
    border-right: 0px;
    border-bottom: 0px;
}

.boardWrapper {
    display: flex;
    justify-content: center;
}

p {
    color: white;
}

#gamecontrols button {
    --color1: #1a801a;
    --color2: salmon;
    margin: 0 10px;
    width: 100px;
    height: 2.5em;
    border-radius: 20em;
    border: 2px solid lightseagreen;
    background: var(--color1);
    color: white;
    font-weight: bold;
}
.info {
    margin: 0 10px;
}
.board {
    margin-top: 20px;
    display: grid;
    align-content: center;;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 80%;
    /* height: 80%; */
    ;
    /* margin-top: 20%; */
    /* max-width: 400px; */
    /* max-height: 400px; */
    /* margin: 0 0;; */
}

.cell {
    /* border: 1px solid black; */
    /* width: 100%; */
    /* height: 100%; */
    /* padding: 20px; */
    text-align: center;
    vertical-align: middle;
    font-size: calc(((50vh - 20px) / 3) - 40px);
    min-height: calc((50vh - 20px) / 3);
    display: grid;
    justify-items: center;
    align-items: center;
    align-content: center;
    /* max-height: calc((50vh - 20px) / 3); */
}

.icon {
    /* padding-left: 2px; */
    /* padding-right: 2px; */
    /* margin-left: 2px; */
    /* margin-right: 2px; */
    width: 90%;
}

#gamecontrols {
    /* flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-bottom: 20px;
    right: 50%;
    position: fixed;
    bottom: 20px;
    margin: 0 auto;
    width: 100%;
    text-align: center; */
    
    position: fixed;
    bottom: 20px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    align-content: center;
    grid-row: 2;
    flex-direction: column;
    flex-wrap: wrap;
}

#information {
    display: flex;
    margin-top: 1em;
}

#gamecontrols > #buttons{
    /* display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    bottom: 20px;
    margin-bottom: 10px;
}

#gameControls p.info {
    margin-top: 10px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin: 20px;
}

.game-card {
    border: 1px solid;
    background-color: #282828;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    /* margin: 20px; */
    color: white;
  }

@media only screen and (min-width: 760px) {
    .cell {
        min-height: calc((80vh - 20px) / 3);
        font-size: calc(((80vh - 20px) / 3) - 40px);
    }
    .game-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin: 20px;
    }
    .game-card {
        border: 1px solid;
        background-color: #282828;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        margin: 20px;
        color: white;
    }
}