*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body{
  background: black;
}
.banner{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider{
  width: 1920px;
  height: 1080px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
}

#slideImg{
  width: 100%;
  height: 100%;
}

.overlay{
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1));
  position: absolute;
  top: 0;
}

.navbar{
  width: 85%;
  display: flex;
  align-items: center;
  margin: 35px auto;
}

.logo{
  flex-basis: 15%;
}
.logo img{
  width: 135px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  cursor: pointer;
}

.content{
  width: 80%;
  margin: 140px auto 0;
  text-align: center;
  color: white;
  position: fixed;
  top: 50%;
  left: 10%;
}
.content h1{
  font-size: 30px;
}
.content h3{
  width: 80%;
  margin: 20px auto 20px;
  font-weight: 100;
  line-height: 25px;
  font-style: italic;
}