* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

header {
    background: #d35400;
    color: white;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}

section {
    display: block;
}


li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
}

span {
    font-style: italic;
    color: red;
}

.span {
    color: #000;
}

/* h4 {
    color: rgb(190, 187, 187);
} */

h1 {
    color: red;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff4d4d;
    padding: 1rem 2rem;
    color: white;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: white;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #34495e;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

h4{
    font-size: 30px;
    font-weight: bold;
}

h2{
    text-transform: uppercase;
    color: #333;
    text-align: center;
    font-size: 30px;
    padding: 20px 0;
    
}

.abt{
    flex: 1 1 35%;
    background-color: #ecf0f1;
    padding: 20px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

section{
    text-align: center;
    height: 50vh;
    margin: auto;
}

@media (max-width: 768px) {
    h2{
        font-size: 20px;
        padding: 20px;
    }

    h4{
        font-size: 15px;
        height: auto;
        width: auto;
    }

    section{
        margin: auto;
    }
}