/* General body and HTML styles */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c5c6c8;
    flex-direction: column;
}

/* Menu icon styles */
.menu-icon {
    position: absolute;
    top: 20px; /* Margin from the top of the page */
    left: 20px; /* Margin from the left side of the page */
}

.menu-icon img {
    width: 30px; /* Standard size for mobile/responsive menu icons */
    height: 30px;
}

/* Logo container styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo-container img {
    max-width: 120px;
    max-height: 416px;
    width: auto;
    height: auto;
}

/* Tagline container styles */
.tagline-container {
    margin-top: 20%;
    display: flex;
    justify-content: center;
}

.tagline-container img {
    max-width: 360px;
    width: 100%;
    height: auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .logo-container img {
        max-width: 60px;
        max-height: 208px;
    }

    .tagline-container img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 40px;
        max-height: 139px;
    }

    .tagline-container img {
        max-width: 120px;
    }
}
