* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

.gameboard {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 600px;
    border: 2px solid #00a6ed;
}

.gameplace {
    height: 200px;
    border: 4px solid #00a6ed;
}

.currentPlayer {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    color: #ffb400;
    
}

.xo {
    font-size: 150px;
    font-weight: 500;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
    color: #ffb400;
}


.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.player { 
    font-size: 32px;
    font-weight: 600;
    margin: 24px;
    color: #f6511d;
   
}

.title {
    font-size: 64px;
    font-weight: 600;
    margin: 24px;
    color: #f6511d;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}

html {
    background-color: blanchedalmond;
}

.active {
    display: grid;
}

.playerName {
    color: #f6511d;
    
}

.button {
    height: 60px;
    width: 100px;
    font-size: larger;
    font-weight: 700;
    color: white;
    background-color: #f6511d;
    border: 2px solid #00a6ed;
    border-radius: 4px;
    margin: 16px;
}


@media (max-width: 600px) {
    
    .title {
        font-size: 32px;
    }

    .player {
        font-size: 24px;
    }

    .gameboard {
        width: 375px;
    }
    
    .gameplace {
        height: 125px;
    }

    .currentPlayer{
        font-size: 32px;
    }
}
