body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
}

h2{
    margin-top: 40px;
    font-size: 40px;
}

header {
    background-color: #ff3300;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

header h1 {
    font-size: 28px;
    margin: 5px;
}

.game-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 20px;
    background-color: #2d2d2d;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#story {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #fff;
}

#choices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #ff3300;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

h1 {
    animation: pulse 2s infinite alternate;
}

#choices button:nth-child(odd) {
    animation: slideInFromLeft 1s ease;
}

#choices button:nth-child(even) {
    animation: slideInFromRight 1s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
    color: #ff6600;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    color: #555;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #ff3300;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #ff6600;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ff3300;
}

.header {
    background-color: #ff3300;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.footer {
    background-color: #333;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.navbar {
    background-color: #222;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}

.navbar li {
    display: inline-block;
    margin: 0 10px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

.hero {
    background-image: linear-gradient(135deg, #1f2937, #111827);
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-body {
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-submit {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #ff3300;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #2ecc71;
    color: #fff;
}

.alert-danger {
    background-color: #e74c3c;
    color: #fff;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
