html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.menu {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns grouped logo/title and menu items */
    padding-left: 10%;
    padding-right: 10%;
}

/* Wrapper for logo and title */
.logo-title-wrapper {
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes menu items to the right */
}

.menu img {
    height: 50px;
    vertical-align: middle;
    padding: 10px;
}

/* Style for the title in the menu */
.menu-title {
    font-size: 20px;
    color: white;
    padding-left: 10px; /* Space between logo and title */
}

.menu a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #ddd;
    color: black;
}

.content {
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 10%;
    max-width: 1200px;
}

h1 {
    color: #333;
}

@media screen and (min-width: 600px) {
    /* Styles for larger screens */
}

@media screen and (max-width: 599px) {
    .menu {
        padding-left: 5%;
        padding-right: 5%;
        justify-content: space-between;
    }
    .menu img, .menu .menu-title {
        display: none; /* Optionally hide the logo and title on mobile */
    }
    .menu a {
        padding: 10px 12px;
    }
    .content {
        padding: 0 5%;
    }
}
