*{
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

.bg-projects{
    background-image: url("./img/bg-projects.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body{
    height: 100vh;
    width: 100vw;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5%;
    position: relative;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.6px);
    -webkit-backdrop-filter: blur(2.6px);
    border: 1px solid rgba(255, 255, 255, 0.41);
}
nav h1 a{
    text-decoration: none;
    color: white;
}

nav h1 a:hover{
    color: #49c5b6;
    transition-duration: .5s;
}

nav h1{
    color: white;
    cursor: pointer;
    border: 2px solid #49c5b6 ;
    padding: 2px;
    position:relative; 
}

nav h1:hover{
    color: #49c5b6;
    transition-duration: .5s;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.nav-links ul {
    display: flex;
    list-style-type: none;
}

.nav-links ul li a{
    text-decoration: none;
    color: #49c5b6;
    margin: 0 14px;
    font-size: 20px;
}

.nav-links ul li a:hover{
    color: aqua;
    transition-duration: .5s;
    font-size: 21px;
}

.main-content h1, h2{
    align-items: center;
    color: antiquewhite;
    display: flex;
    justify-content: center;
    padding: 50px;
    margin-top: 166px;
}

.main-content h2{
    color: #49c5b6;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
    flex-direction: column;
    margin-bottom: 2px;
}

footer h3{
    margin-bottom: 10px;
}

.footer-container h3{
    color: antiquewhite;
}

.footerline{
    width: 95%;
    height: 2px;
    background-color:#49c5b6 ;
}

.socialmedia {
    justify-content: space-between;
}

.socialmedia i{
    font-size: 25px;
    color: #49c5b6;
    width: 40px;
    cursor: pointer; 
}

.socialmedia i:hover{
    color:aqua;
    transition-duration: .3s;
}

small{
    color: antiquewhite;
}