body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('/images/ADU.jpg') no-repeat center center fixed; 
    background-size: cover;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* White with transparency */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}
.nav-pane {
    display: flex;
    justify-content: space-between; /* Adjusts space between buttons */
    list-style-type: none;
    padding: 0 1px; /* Padding inside the container for space at edges */
    margin: 0; /* Remove margin to fit within the container */
    flex-wrap: wrap;
}
.nav-pane li {
    width: 130px;
    margin: 2px; /* Adds margin around each button */
    /*flex-grow: 1; /* Allows buttons to grow */
    /*min-width: 120px; /* Minimum width for smaller screens */
}
.nav-pane a {
    background-color: #007bff;
    color: white;
    padding: 5px 2px;
    border-radius: 5px;
    display: block;
    text-align: center;
    width: 100%; /* Use full width of the list item */
}
.nav-pane a:hover {
    background-color: #0056b3;
}
@media (max-width: 400px) {
    .nav-pane {
        flex-direction: column;
        align-items: center;
    }
}
h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.introduction p {
    display: none;
    margin-bottom: 10px;
}
.introduction p.short-text {
    display: block;
}
.toggle-text {
    cursor: pointer;
    color: #007bff;
    font-weight: bold;
}
.toggle-text:hover {
    text-decoration: underline;
}
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
p {
    margin-bottom: 10px;
}
button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}
button:hover {
    background-color: #0056b3;
}
.strike {
    text-decoration: line-through;
    font-style: italic;
}
.logo {
    width: 60%; /* Adjust size as needed */
    height: auto; /* Maintains the aspect ratio of the logo */
}