* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    height: 95vh;
    aspect-ratio: 0.7;
    padding: 2rem;
    background-color: #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.title {
    text-align: center;
    color: #64b5f6;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    /* flex-grow: 1; */
    line-height: 1.8;
    color: #e0e0e0;
    overflow-y: auto;
    white-space: break-spaces;
    scroll-behavior: smooth;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-button {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background-color: #1976d2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.option-button:hover {
    background-color: #2196f3;
    transform: translateY(-2px);
}

.option-button:active {
    transform: translateY(0);
}

/* Typewriter cursor styling */
.Typewriter__cursor {
    color: #64b5f6;
    font-weight: bold;
} 