/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: white;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .logo-img {
    height: 30px;
    margin-right: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a.create-btn {
    background-color: gray;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
}

.nav-links a.create-btn:hover {
    background-color: gray;
}

.navbar.scrolled a {
    color: black;
}

.navbar.scrolled a.create-btn {
    color: white;
}

/* Main Content */
.content {
    text-align: center;
    padding: 5rem 2rem;
    background-color: rgb(173, 6, 6);
    color: white;
    height: 300px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
.content{
    height: 400px;
}
.content h1{
    margin-top: 50px;
}
.orange{
    height: 350px;
}
.red{
    height: 350px; 
}
.gray{
    height: 350px; 
}
.end{
    height: 350px; 
}
.green{
    height: 350px; }

    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .navbar .nav-links li {
        margin: 5px 0;
        margin-right: 8px;
        margin-top: 8px;
    }

    .navbar .nav-links li a {
        font-size: 14px;
    }
}


   