body{
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color:#f0f0f0;
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100vh;
}

.column{
    padding: 20px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

.left{
    text-align: center;
    border-left: none;
}

.middle {
    text-align: center;
    overflow-y: auto;
    padding: 20px;
}

#loreContainer p {
    margin: 10px 0;
    font-style: italic;
    color: #ccc;
}

#choices {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#choice1, #choice2 {
    margin-top: 15px;
    flex: 1;
    max-width: 200px;
    background-color: #2a2a2a;
}



.right{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button{
    background-color: #1f1f1f;
    color: #f0f0f0;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

button:hover{
    background-color: #333;
}

button:active{
    transform: scale(0.95);
}