body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 50px;
}

.container {
    max-width: 800px;
    margin: auto;
}

h1 {
    font-size: 3em;
}

p {
    font-size: 1.2em;
}

nav {
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center; /* Centers items vertically */
    gap: 10px; /* Adds spacing between image and text */
}

.logo {
    width: 120px; /* Adjust size */
    height: auto;
}

.site-name {
    font-size: 20.5em; /* Adjust text size */
    color: white;
    text-decoration: none;
    font-weight: bold;
    line-height: 50px; /* Matches logo height for vertical alignment */
}


ul {
    list-style: none;
    padding: 0;
}

li {
    display: inline;
    margin: 0 20px;
}

a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

    a:hover {
        color: #ff6600;
    }

.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
}

    .button:hover {
        background-color: #ff3300;
    }

.logo {
    width: auto; /* Adjust size */
    height: 50px;
    text-align: left;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    display: block; /* Initially hidden */
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    min-width: 150px;
}

/* Class that will be toggled by JavaScript */
.show-dropdown {
    display: block;
}

