@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&family=Roboto&display=swap');

body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.welcome, .game-div {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

#welcome-screen, #game-container {
    padding: 25px 50px;
    /* border: 2px solid black; */
    max-width: 500px;
    width: 90%;
    /* margin-top: 50px; */
    
}

#welcome-screen header, #game-container header {
    border: 2px solid #250925;
    color: white;
    background-color: #250925;
    border-radius: 20px;
    margin: 15px;
    font-family: 'Roboto', sans-serif;
}

.user-choice, .user-name, .game-mode-box {
    border: 2px solid #250925;
    border-radius: 20px;
    padding: 15px;
    margin: 5px;
    box-shadow: 2px 2px 5px black;
}

.user-name {
    display: flex;
    flex-direction: column;
}

.user-name input {
    border: none;
    outline: none;
    border: 2px solid #250925;
    border-radius: 20px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    background-color: transparent;
    padding: 10px;
    margin-top: 10px;
}

.user-name label, .game-mode-box label, .user-choice label {
    font-size: 25px;
    color: #250925;
    font-family: 'Roboto', sans-serif;
}

.choice-btn,
.mode-btn,
#startGame,
#reset {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: #250925;
    color: white;
}

.choice-btn:hover,
.mode-btn:hover,
#startGame:hover,
#reset:hover {
    background-color: #4a134a;
}

.choice-btn:focus, .mode-btn:focus {
    color: #4a134a;
    border: 2px solid #4a134a;
    background-color: #ddd;
}

/* #game-container {
    padding: 25px 50px;
    max-width: 500px;
    width: 90%;
    margin-top: 50px;
} */

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    justify-content: center;
    margin: 20px auto;
}

.box {
    width: 100px;
    height: 100px;
    font-size: 24px;
    background: white;
    border: 2px solid black;
    cursor: pointer;
}

.box:hover {
    background-color: #ddd;
}

.info {
    font-size: 20px;
    color: #250925;
    margin: 20px;
    font-family: 'Roboto', sans-serif;
}