/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f5f2;
    color: #333;
    text-align: center;
}

/* Header Styling */
.header {
    background-color: #8b0000;
    padding: 15px;
}

.header img {
    max-width: 180px;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

/* Navigation Bar */
.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #a52a2a;
    padding: 10px;
    gap: 10px;
    width: 100%;  /* Ensure the nav container spans full width */
}

.nav a {
    display: block;
    width: 85%;
}

.nav button {
    background-color: #fff;
    color: #8b0000;
    border: 2px solid #8b0000;
    padding: 10px;
    font-size: 16px;
    width: 100%;  /* Button takes full width of its parent anchor */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: normal;
    word-break: break-word;
}

.nav button:hover {
    background-color: #8b0000;
    color: #fff;
}

/* Responsive Fixes */
@media (max-width: 400px) {
    .nav button {
      font-size: 14px;
      padding: 12px;
    }
}
