/* style.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #e0f7fa;;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 70vw;
height: 60vh;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
text-align: center;
}
.card h2 {
font-size: 2.5em;
margin-bottom: 20px;
}
.choice {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 400px;
}
.choice button {
font-size: 1.2em;
padding: 10px 20px;
border: 1px solid #333;
background-color: #4CAF50;
color: white;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.choice button:hover {
background-color: #45a049;
}