body {
background: #dabedb;
display: flex;
flex-direction: column;
align-items: center;
}
#game-container {
display: grid;
grid-template-columns: repeat(3,1fr);
gap:30px;
align-content: center;
justify-content: center;
max-width: 300px;
height: 10px
padding: 10px;
}
.bakuhatu {
font-size: 150%;
text-align: center;
border-radius: 50%;
background-color: #300d2e;
color: #ffffff;
width: 90px;
height: 90px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.bakuhatu:hover {
background-color: #4a1049;
transform: scale(1.1);
}
#startbotan {
font-size: 18px;
padding: 10px 20px;
background-color: #4a1049;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
#startbotan:hover {
background-color: #6a1569;
}