body {
    background-color: #1B2947; /* Set background to match the bluest tint of the image */
    font-family: Arial, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

/* Default styles for the container */
.container {
    width: 90%; /* Use a relative width */
    max-width: 960px; /* Maximum width for larger screens */
    margin: 60px auto;
    padding: 1em;
    background-color: #868db0;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Adjust styles for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 95%; /* Increase the width for smaller screens */
        margin: 30px auto; /* Adjust margins for smaller screens */
        padding: 0.8em; /* Adjust padding for smaller screens */
    }
}

/* Adjust styles for very small screens like smartphones */
@media (max-width: 480px) {
    .container {
        width: 98%; /* Further increase the width for very small screens */
        margin: 15px auto; /* Further adjust margins for very small screens */
        padding: 0.5em; /* Further adjust padding for very small screens */
    }
}


.logo {
    text-align: center;
    margin-bottom: 2em;
}

.logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

h1 {
    text-align: center;
    color: goldenrod;
    font-size: 2.2em;
    margin-bottom: 0.3em;
}

.subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 2em;
    color: #333;
}

ul {
    list-style-type: square;
    padding-left: 0em;
    line-height: 1.8em;
    list-style-type: none;
}

ul li {
    margin-bottom: 0.5em;
}

p {
    margin-top: 2em;
}

address {
    margin-top: 3em;
    font-style: normal;
    font-size: 0.9em;
    text-align: center;
}

hr {
    margin: 3em 0;
}

/* Use percentage width for buttons */
.entry-button, .box-link {
    width: 30%; /* Adjust the percentage as needed */
    display: block;
    margin: 2em auto;
    text-align: center;
}

/* Style for the entry button */
.entry-button {
    padding: 1em 2em;
    font-size: 1.2em;
    background-color: #ffcc00;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #e6b800;
}

/* Style for the box links */
.box-link {
    padding: 0.7em 1.5em;
    font-size: 1em;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #e6e6e6;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 2em;
    color: #333;
    font-weight: bold;      /* Make it bold */
    font-size: 1.5em;       /* Increase size a bit (adjust as needed) */
    text-shadow: 0 1px 1px rgba(0,0,0,0.1); /* Optional: subtle shadow for extra visibility */
}

.warning-box {
    background-color: #ffcccc; /* Light reddish background */
    border: 1px solid #ff0000; /* Red border */
    color: #333; /* Dark text color for readability */
    padding: 1em; /* Padding inside the box */
    margin: 1em auto; /* Margin outside the box */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center the text */
    font-weight: bold; /* Bold text */
    max-width: 80%; /* Ensure the box doesn't span the full width of the container */
}



