/* Style file */
*{
    margin: 0;
    padding: 0;
}
nav {
    background-color: rgb(37, 9, 37);
    color: white;
    height: 75px;
    font-size: 27px;
    display: flex;
    justify-content: space-between; /* Distribute items across the navbar */
    align-items: center;
    padding: 0 12px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
    nav ul {
    list-style-type: none;
    display: flex;
    width: 100%;
    justify-content: space-between; /* Spread the logo and credits */
    padding: 0;
    margin: 0;
    align-items: center;
}

nav ul li {
    padding: 0 20px;
}

.credits {
    margin-left: auto; /* Push the credits to the extreme right */
    font-size: 18px;
}

.gamecontainer {
    background-color: #add8e6;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.container {
    display: grid;
    grid-template-rows: repeat(3,10vw);
    grid-template-columns: repeat(3,10vw);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.box {
    border: 2px solid #333;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-content: center;
}
.box:hover {
    background-color: rgb(217, 180, 252);
}
.gameInfo {
    padding: 0 34px;
    font-family: 'Baloo Bhaina 2', cursive;
}
.imgbox img {
    width: 0;
    transition: width 0.5s ease-in-out; /* Corrected transition property */
}
.br-0 {
    border-right: 0;
}
.bl-0 {
    border-left: 0;
}
.bt-0 {
    border-top: 0;
}
.bb-0 {
    border-bottom: 0;
}
#reset {
    margin: 0 23px;
    padding: 1px 18px;
    background: #f3e7f9;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Baloo Bhaina 2';
    font-size: 15px;
    font-weight: border;
}
