* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-size: cover;
    background-image: url(Pinguin.jpg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    background-color: rgb(25, 26, 50);
    justify-content: center;
    align-items: center;
    box-shadow: 0px 14px 32px 3px rgba(25, 26, 50);
    -webkit-box-shadow: 0px 14px 32px 3px rgba(25, 26, 50);
    -moz-box-shadow: 0px 14px 32px 3px rgba(25, 26, 50);
    z-index: 1;
    flex-wrap: wrap;
}

header nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    display: flex;
    align-items: center;
    margin: 5px 15px;
    padding: 12px 20px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

header nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

header nav ul li:hover {
    background-color: rgb(10, 13, 119);
    text-decoration: underline;
}
.visited{
    background-color: rgb(10, 13, 119);
}
.Pinguingif{
    height: 53px;
    width: auto;
    margin: 0 10px;
}

.Pinguingif:hover{
    background-color:rgba(25, 26, 50) ;
}

/* Mobile Menu Styles */
.hamburger {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .hamburger {
        display: block; /* Show on mobile */
        order: 3; /* Move to the right */
    }

    header nav {
        display: none; /* Hide nav by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(25, 26, 50);
    }

    header nav.nav-open {
        display: block; /* Show nav when open */
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

.main-content {
    margin-top: 70px; /* Adjust for fixed header height */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-content iframe {
    width: 100%;
    max-width: 800px; /* Or any suitable max-width */
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
    height: auto; /* Allow height to adjust based on aspect ratio */
}

footer {
    text-align: center;
    margin-top: 20px ;
    padding: 10px;
    background-color: white;
    width: 100%;
}
footer p {
    font-size: 18px;
    background-color: white;
}
