* {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(#200016, #10001f);
  height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin: 20px;
  text-transform: capitalize;
  font-weight: bold;
  width: 100%;
  z-index: 1;
}

header ul {
  display: flex;
}

header ul li {
  list-style: none;
  padding-right: 60px;
  
}
header ul li a{
    color: white;
    text-decoration: none;
    padding:7px 20px;
}
header ul li a:hover{
    color: #200016;
    background-color: white;
    padding:7px 20px;
    border-radius: 15px;
}
main{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
main::after{
    position: absolute;
    content: "";
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to top,#200016, transparent);
}
img{
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    
}
#moon{
    mix-blend-mode: screen;
     transform: translateX(-290px);
     
}
.name{
    color: white;
    
    transform: translateY(-100px);
    font-size: 70px;
}
.content{
    color: white;
padding: 40px;
}
.content h2{
    margin: 20px 0;
    font-size: 30px;
}
.content p{
margin: 20px 0;
}
div.divider{
  height: 50px;
  width: 100%;
  background: linear-gradient(to bottom,#14001D, black);
}
footer{
  height: 100px;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 0 ;
}
ul.social-icons{
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}
ul.social-icons i{
  color: white;
  font-size: 25px;
  padding: 0 10px;
}
ul.social-icons i:hover{
  color: #8f35b9;
}
ul.nav-bar{
  display: flex;
  list-style: none;
  justify-content: center;
}
ul.nav-bar a{
  color: white;
  font-size: 15px;
  padding: 0 15px;
  text-transform: capitalize;
  text-decoration: none;
}
ul.nav-bar a:hover{
  text-decoration: underline;
  color: #8f35b9;
}
footer h4{
  color: white;
  text-transform: capitalize;
  font-weight: 400;
  text-decoration: underline;
}

