*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: #000;
min-height: 100%;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
transition: 0.6s;
padding: 40px 100px;
z-index: 100000;
}
header.sticky{
padding: 5px 100px;
background: #fff;
}
header.sticky .logo,
header.sticky ul li a{
color: #000;
}
header .logo{
position: relative;
font-weight: 600;
color: #fff;
text-decoration: none;
font-size: 1.5em;
text-transform: lowercase;
letter-spacing: 2px;
transition: 0.6s;
}
header ul{
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
header ul li{
position: relative;
list-style: none;
}
header ul li a{
position: relative;
margin: 0 15px;
text-decoration: none;
color: #fff;
letter-spacing: 2px;
font-weight: 500px;
transition: 0.6s;
font-size: 17px;
}
.banner{
position: relative;
width: 100%;
height: 70vh;
background: url(bgr1.gif);
background-size: cover;
}