body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.story-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.choices {
    display: flex;
    justify-content: space-evenly;
    margin-bottom:1rem;
}

.choice-button,
.reset-button {
    display: inline-block;
    padding: 1rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 1rem;
    transition: background-color 0.3s;
}

.choice-button:hover,
.reset-button:hover {
    background-color: #2980b9;
}
