body {
    font-family: 'Montserrat', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    opacity: 0.8;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    width: 90%;
}

.option-button {
    background-color: #3a3a3a;
    border: none;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-button::before {
    content: attr(data-icon);
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.option-button:hover {
    background-color: #4a4a4a;
    transform: scale(1.05);
}

.option-button:active {
    background-color: #ffffff;
    color: #2c2c2c;
}

@media (max-width: 600px) {
    .button-container {
        grid-template-columns: 1fr;
    }
}
