* {
    margin: 0;
    padding: 0;

}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: url('./img/wallpaperflare.com_wallpaper.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;

}

header {
    display: flex;
    align-items: center;
    font-family: 'Skranji', cursive;
    justify-content: center;
    height: 10%;
    background-color: aliceblue;
    font-size: 3rem;
}


main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.gameBoard {
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3,1fr);
    min-width: 720px;
    min-height: 720px;
    gap: 5px;



}

.celda {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background-color: white;
    opacity: 70%;
    border-radius: 10px;
    cursor: pointer;    
}

.active {
    background-color: rgb(204, 204, 204);
    cursor:not-allowed;
}

.winner {
    background-color: rgb(75, 238, 184);
    cursor:not-allowed;
}

.tie {
    background-color: rgb(255, 220, 23);
    cursor:not-allowed;
}

.hidden {
    visibility:hidden;
}

.reset {
    margin-top: 8vh;
    font-size: 3rem;
    padding: 5px 35px;
    border-radius: 10px;
    background-color: rgb(204, 204, 204);
    cursor: pointer;
    opacity: 80%;
    font-weight: bold;
}