* {
    margin: 0;
    padding: 0;
    font-family: roboto, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
    list-style: none;
    color: white;
}

body {
    background-color: rgb(228, 156, 93);
}

.title {
    text-align: center;
    padding: 3vh;
}
@keyframes slide-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;

    }
}

.modalContainer {
    z-index: 1;
    display: flex;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
        /* @keyframes duration | easing-function | delay |
iteration-count | direction | fill-mode | play-state | name */
    animation: 0.5s 1 backwards slide-in;
}

.resultModal {
    position: relative;
    width: 100vh;
    height: 40vh;
    background-color: #e4826e;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10vh;

}



.resultText {
    justify-self: center;
}

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

.newGame>button {
    background-color: #e36d5d00;
    border: 1px solid #E36D5D;
    border-radius: 5px;
    font-size: large;
    padding: 15px;
    margin-top: 20px;
    color: #E36D5D;
    background-color: white;
}

.gameboardContainer{
    display: flex;
    height: 60vh;
    width: 60vh;
    padding: 5vh;
    justify-self: center;
}

.gameboard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    background-color:#E36D5D;
    width: 100%;
    height: 100%;
    gap: 10px;
    align-self: center;
    justify-self: center;
}

.cell {
    background-color: #e49c5d;
    display: flex;
    align-items: center;
    justify-content: center;
}
