* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("X0bg.jpg"); 
    background-size: cover;   
    background-position: center;
}

h1 {
    color: #003049;
    font-size: 45px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 20px;
}

.base {
    height: 70vh;
    aspect-ratio: 1 / 1;
    background-color: #fdf0d5;
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    border-radius: 5%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);  
}

.game {
    height: 60vh;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-self: center;
    gap: 15px;
}

.btn {
    height: 18vh;
    aspect-ratio: 1/1;
    background-color: #fdf0d5;
    border: 0.1px solid grey;
    border-radius: 10%;
    border: none;
    box-shadow: 2px 2px 8px gray;
    font-size: 90px;
    font-weight: bold;
    cursor: pointer;
}

#resetGame {
    color: #fdf0d5;
    background-color: #003049;
    font-weight: bold;
    border-radius: 8%;
    padding: 12px;
    font-size: 20px;
    margin-top: 30px;
    border: none;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);  
    cursor: pointer;
}

.newGame {
    height: 50px;
    width: 150px;
    color: #003049;
    background-color: #fdf0d5;
    font-weight: 775;
    border-radius: 8%;
    padding: 5px;
    font-size: 22px;
    border: none;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;  
    margin-bottom: 50vh;
}


.msg {
    font-size: 45px;
    color: #003049;
    margin-top: 35vh;
    margin-bottom: 20px;
}

.hide {
    display: none;
}

.hide2 {
    display: none;
}

.afterGame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center, space-evenly;
}