@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    
}

.logo{
    cursor: pointer;

}

header img{
    height: 120px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    
    
}

.nav_links {
    list-style: none;

}

.nav_links li{
    display: inline-block;
    padding: 0px 30px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border:none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(0,136,169,0.8);

}

iframe {
    border-radius: 2em;
    margin-bottom: 40px;
}

iframe:hover{
    transform: scale(1.1);
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5em;
    color: white;
}

.box{
    max-width: 600px;

}

h1{
    font-size:4em;
    
}

p{
    font-size: 1.2em;
}



footer{
    background-color: #3f3f3f;
    height: 100px;
    margin-top: auto;
    padding: 30px;
    
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h4{
    text-align: center;
    color: white;
    background-color: #3f3f3f;

}

h3{
    color:#24252A;
}

p2{
    color: #24252A;
}






/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
    
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav_links {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        flex-direction: column;
    }

    .nav_links li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .nav_links.active {
        display: block;
    }
}

@media (max-width:600px){
    .section{
        width: 100%;
        display: table-column;
        margin-left: auto;
        margin-right: auto;
    }

    .box{
        width: 100%;
        display: table-column;
    }
    
    p{
        display: none;
    }

    h2{
        display: none;
    }

    h3{
        color: white;
        text-align: center;
        padding: 20px;
        background-color: #3f3f3f;
        border-radius: 20px;
        font-size: 1.3em;
        margin-left: 20px;
        margin-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    p2{
        color: white;
        text-align: center;
        padding: 10px;
        background-color: #3f3f3f;
        border-radius: 20px;
        font-size: 1.3em;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -20px;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    iframe{

        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-right: 80px;
    }
    


}












