/* Ensure full-width layout on mobile */
html, body {
    width: 100%; 
    height: 100%; 
    background-color: black; 
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-y: scroll;
}

/* Navbar styling for mobile and desktop */
.navbar {
    width: 100%;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 75px;
    cursor: pointer;
}

.navbar ul {
    padding: 0;
    display: flex;
    margin: 0;
}

.navbar ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}

h1 {
    text-align: center;
    color: white;
    font-size: 30px;
}

p {
    color: #fff;
    font-size: 16px;
    padding: 0 10%;
}

/* Make iframe responsive */
.schleem iframe {
    width: 100%;
    height: 100%;
    max-width: 640px;
    margin: auto;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Navbar stack vertically on small screens */
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    /* Increase padding for better touch targets */
    .navbar ul li {
        margin: 10px 0;
    }

    /* Adjust text sizes for readability */
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    /* Adjust sections' padding */
    article {
        padding: 10px;
    }

    /* Logo scaling */
    .logo {
        width: 50px;
    }
}
