*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
nav{
    position: sticky;
    top: 0%;
    z-index: 10;
}
ul{
    display: flex;
    justify-content: center;
    list-style: none;
}
nav li{
    padding: .5rem 2rem;

}
nav li a {
    font-family: Poppins;
    color: white;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    text-decoration: none;
    font-weight: 600;
    background-color: transparent;
    display: inline-block;

}
.display1{
    width: 100%;
    position: relative;
    height: 100vh;
}
#hero{
    width: auto;
    position: fixed;
    z-index: -100;
    top:0% ;
    object-fit: contain;

}
.display1 h1{
    padding: 10rem;
    color: white;
    font-family: Inter;
    letter-spacing: .1rem;
    font-size: 4rem;
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0px 0px 10px rgb(255,255,255,0.3));
}
.display2{
    width: 100%;
    height: vh;
    overflow: hidden;
    background: radial-gradient(circle,rgb(0, 0, 0) 0%, rgb(22, 22, 22) 33%, rgb(25, 25, 25) 57%, rgb(0, 0, 0) 100%);
    font-family: Poppins;
}
.display2 h1{
    margin-top: 3rem;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    color: rgb(255, 255, 255);
}
.socials{
margin: 5rem;
color: white;
text-align: center;
width: 50%;
margin-left: auto;
margin-right: auto;
height: 80vh;
}

.socials img{
    height: 100px;
    transition: all .2s;
}
.socials img:hover{
    transform: translateY(-10px);
}
.infotab2 img{
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}
.infotab2 img:hover{
    transform: none;
}
.projects{

    width: 50vw;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    text-align: center;
    flex-direction: column;
}
.project1{
    width: 100%;
    height: 25%;
    color: rebeccapurple;
}
.project1 h1{
    font-size: 2rem;
}
.project1 img{
    width: 80%;
    object-fit: contain;
    overflow: hidden;
    width: 100%;
    transition: .3s all;
    height: 100%;
}
.project1 .img1{
    overflow: hidden;
    height: fit-content;
    width: 80%;
    border-radius: 2rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.project1  p{

    color: white;
}
.project1 img:hover{
    scale: 1.2;

}
.footer{
    width: 100%;
    background-color: white;
    height: 35vh;
}
.footer .contacts2 h1{
    color:black;
}
.footer .contacts2{
    display: flex;
    flex-direction: column;
    width: 34vw;
    margin-left: 3rem;
}
.contacts2 a{
    background-color: rgb(21, 21, 21);
    width: fit-content;
    padding: .5rem;
    margin-top: .5rem;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: 1rem;
}