*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    background: #080808;
    color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
}
#header {
    display: flex;
    width: 100%;
    position: fixed;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ffffff5c;
    z-index: 99;
    background-color: #080808c8;
    /* Enable scrolling */
    max-height: 3rem;  /* Adjust as needed */
    overflow-y: auto;  /* Scroll vertically */
}

.containerHero{
    display: flex;
    align-items:center ;
    justify-content: center;  
    height: 100vh;
}

nav{
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;

}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}


nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover{
    width: 100%;
}

.header-text{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    gap: 2rem;
}


.header-text h1{
    font-size: 3.5rem;
    margin-bottom: 0px;
    font-family: 'Roboto',sans-serif
    
}

.header-text p{
    font-size: 20px;
    margin-top: 10px;
    width: 30rem;
    font-family: 'Source Sans Pro', sans-serif;
}


.imgAbout{
    max-width: 15rem;
    height: 15rem;
    width: 100%;
    border-radius: 70%;
}


/*about*/
.about{
    padding: 80px;
    color: #ff004f;
}

.containerAboutText{
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem 4rem;
    margin-bottom: 2rem;

}


.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 500%;
    
}

.contact-left p {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.contact-left p i {
    color: #878787;
    margin-right: 15px;
    font-size: 25px;
    display: inline-block;
    vertical-align: middle;
}

.social-icons{
    margin-top: 30px;
}

.social-icons a{
    color: #ababab;

    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
}


.btn.btn2{
    display: inline-block;
    background: #878787;
    width: 10rem;
    height: 3rem;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;

}