@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body{
    height: 90vh;
    font-family: "Roboto", sans-serif;
    background-color: #313131;
    color: wheat;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}
.game-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.box {
    height: 110px;
    width: 110px;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    cursor: pointer;
}

h1 {
    text-decoration: underline;
    text-decoration-style: wavy;
}
.reset-btn{
    width: 80px;
    height: 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    outline: none;
    background-color: #b26704;
    color: wheat;
    font-size: 16px;
}
