@import url(https://fonts.googleapis.com/css2?family=Shrikhand&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap);

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
}

:root {
    --dark-green: #1e4844;
    --light-green: #d6eadf;
    --bright-green: #b8e0d2;
    --winning-gradient: linear-gradient(#ecc30b, #f79d65, #ff2ecc)
}

#root {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center
}

.App {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #d6eadf;
    color: var(--light-green);
    background-color: #1e4844;
    background-color: var(--dark-green)
}

.App h1 {
    font-family: "Shrikhand", cursive;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    display: none;
}

.InteriorSquare {
    background-color: var(--light-green);
    width: 4.8vw;
    height: 4.8vw;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 2.5rem
}

.current {
    background-color: var(--bright-green)
}

.ExteriorSquare {
    background-color: var(--dark-green);
    width: 15vw;
    height: 15vw;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    grid-gap: .3rem;
    -webkit-justify-content: stretch;
    justify-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch
}

.played {
    background-color: var(--light-green);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 9rem;
    height: 15vw;
    width: 15vw
}

.Gameboard,
.played {
    -webkit-justify-content: center;
    justify-content: center
}

.Gameboard {
    color: var(--dark-green);
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    -webkit-align-content: center;
    align-content: center;
    grid-gap: .8rem;
    margin-bottom: 3rem
}

.Instructions {
    width: 50%;
    margin: 0 auto
}

.Instructions h2 {
    margin-bottom: 0;
    display: none;
}

#instruct-text {
    margin-top: 5px;
    display: none;
}

/*# sourceMappingURL=main.62ec96d7.chunk.css.map */