/* General body styling for both the homepage and story pages */
body {
    font-family: 'Patrick Hand', cursive; /* Ensure the Patrick Hand font is used throughout */
    text-align: center;
    margin: 20px;
    background-color: #f4f4f9;
    color: #333;
}

/* Header styling */
header {
    background-color: #6fa3ef;
    padding: 20px;
    box-shadow: 0px 4px 2px -2px gray;
}

h1 {
    font-size: 3em;
    margin: 0;
}

/* Paragraph styling */
p {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Inventory box styling */
#inventory {
    border: 1px solid black;
    padding: 10px;
    width: 300px;
    margin: 10px auto;
    background-color: #fff;
}

#inventory-item {
    text-align: left;
}

/* Image container styling */
#image-container {
    margin: 20px;
}

/* Adventure image styling */
#adventure-image {
    width: 50%; /* Use percentage without 'px' */
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Ensure the image doesn't overflow the screen */
    height: auto; /* Maintain aspect ratio */
}

/* Media query for very small screens (e.g., mobile devices) */
@media screen and (max-width: 600px) {
    #adventure-image {
        width: 100%; /* Make the image take up full width on small screens */
    }
}
/* Choices styling */
#choices {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: blue;
    margin: 0 10px;
    font-size: 1.2em;
}

/* Button styling */
#start-btn {
    background-color: #6fa3ef;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 30px;
}

#start-btn:hover {
    background-color: #558ccc;
}

/* Footer styling */
footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #666;
}

body {
    font-family: 'Patrick Hand', sans-serif;
    text-align: center;
    margin: 20px;
}

#inventory {
    border: 1px solid black;
    padding: 10px;
    width: 300px;
    margin: 10px auto;
}

#image-container {
    margin: 20px;
}

#choices {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: blue;
    margin: 0 10px;
}

#cookie-popup {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}