body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 5px solid #ff4081;
}

h1 {
    color: #ff4081;
}

h2 {
    color: #1976d2;
}

h3 {
    color: #4caf50;
}

.btn, .option {
    margin: 10px 0;
    padding: 10px;
    background-color: #ffeb3b;
    color: #000;
    border: 2px solid #ff4081;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover, .option:hover {
    background-color: #ffd600;
}

.option {
    font-size: 18px;
}

.hidden {
    display: none;
}
