/* Global styles */
body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* Title */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Logo */
img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Paragraph under logo */
p {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
}

/* Menu button */
.menu-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.menu-button {
    font-family: 'Bebas Neue', sans-serif;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1.5em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.menu-button:hover {
    background-color: #ffffff;
    color: #121212;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    background-color: #1f1f1f;
    border: 1px solid #333333;
    border-radius: 5px;
    flex-direction: column;
    width: 220px;
    z-index: 1000;
}

.menu-dropdown a {
    text-decoration: none;
    color: #ffffff;
    padding: 12px 16px;
    border-bottom: 1px solid #333333;
    text-align: center;
    transition: background-color 0.3s;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background-color: #333333;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9em;
    color: #888888;
}
