@font-face {
    font-family: 'Indie Flower';
    src: url('Indie_Flower/IndieFlower-Regular.ttf') format('truetype');
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    background: url('images/backgroundC.jpg') repeat-y;
    background-size: cover;
    animation: scrollVertical 75s;
    color: white;
}


@keyframes scrollVertical {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -1000px;
    }
}

.container {
    width: 100vw;
    /* full viewport width */
    height: calc(100vw * (16 / 9));
    /* maintain 9:16 aspect ratio */
    max-height: 40vh;
    /* full viewport height */
    max-width: calc(100vh * (9 / 16));
    padding: 20px;
    border-radius: 30px;
    background: #5a5e56;
    /* background: #e5f2d2; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    /* overflow-y: auto;   */
}

footer {
    margin-top: auto;
    flex-shrink: 0;
}

.title {
    font-size: 21px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: oblique;
    margin-bottom: 3vh;
}

.start-button {
    font-size: 21px;
    font-family: "Garamond", serif;
    padding: 1vh 2vw;
    /* border: 2px solid #fcf0c0; */
    background-color: #140f0f;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1dvb;
    border-radius: 30px;
}

.start-button:hover {
    background-color: #333333;
}

.game-container {
    display: none;
    margin-top: 10%;
    overflow: auto;
}

.choices {

    display: flex;
    flex-direction: column;
    /* Arrange buttons in a column */
    align-items: center;
    /* Center the buttons horizontally */
    gap: 10px;
    /* Space between the buttons */
    margin-top: 2rem;
    /* Space above the choices container */
}

.choice-button {
    font-family: "Indie Flower", serif;
    font-size: 18px;
    /* Adjust font size to be smaller */
    padding: 1vh 1vw;
    /* Adjust padding based on viewport height and width */
    border: 1.5px solid #f2d79e;
    /* Solid border */
    background-color: #f6e9bd;
    /* White background */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.3s;
    /* Smooth transitions */
}