body {
font-family: Arial, sans-serif;
background: #111;
color: white;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}


.container {
display: grid;
grid-template-columns: repeat(2, 120px);
gap: 20px;
}


button {
font-size: 24px;
padding: 20px;
border: none;
border-radius: 10px;
cursor: pointer;
}


button:hover {
opacity: 0.85;
}