body  {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(0deg, #040404 0%, #2b3031, rgb(134, 133, 133) 100%);
    color: whitesmoke;
}

#container {
    width: 600px;
    margin: 0 auto;
    height: 95%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

#choices {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

#background {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    border: 1.5px solid rgb(199, 197, 197);
}

.choice {
    font-weight: '600';
    font-size: 16px;
    cursor: pointer;
    width: 45%;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 20px 20px 50px #ffffff;
}

#story {
    height: 75px;
    width: 100;
}

#title {
    font-size: 30px;
    font-weight: '600';
}

#musicToggle {
    background-color: #676767;
    color: whitesmoke;
    border: none;
    padding: 10px;
    border-radius: 8px;
}
#musicToggle:hover {
    background-color: rgb(157, 155, 155);
    cursor: pointer;
}

@media (max-width: 650px) {
    #container {
        width: 80%;
    }
    #story {
        height: 100px;
    }
}
