@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.main-container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.choice-container {
    display: flex;
    gap: 30px;
}

.choice-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    text-align: left;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #8A2BE2;
}

.choice-card h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.choice-card p {
    color: #a0a0a0;
    line-height: 1.6;
}
