*{

  margin: 0;
  padding: 0;
  font-family: sans-serif;
  
}


.hero{

  width: 100%;
  height: 100vh;
  background-image: url(images/background.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;

}

.logo{

  width: 100px;
  cursor: pointer;

}

.navbar{

  width: 85%;
  height: 15%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.side-bar{

  width: 80px;
  height: 100vh;
  background: linear-gradient(#00545d, #000729);
  position: absolute;
  top: 0;
  right: 0;

}

.menu{

  display: block;
  width: 45px;
  margin: 40px auto 0;
  cursor: pointer;
}

.social-links img{

width: 45px;
margin: 5px auto;
cursor: pointer;
}

.social-links{

  width: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

}


.content{

  color: azure;
padding: 14px;
  background-color:  #e10b9658;
  border: 6px solid;
  position: absolute;
  top: 35%;
  left: 20%;
  right: 20%;
    z-index: 2;
}

