* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

body {
  width: 100%;
  height: 100vh;
  font-family: 'agency fb';
  background: url('https://images.unsplash.com/photo-1554537173-c4daede7794b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1050&q=80') no-repeat;
  background-position: 32%;
  background-size: cover;
  background-position: top/ left;
  overflow: hidden;
}

ul {
  list-style: none;
}

.nav {
  width: 200px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  flex: 0 0 50%;
  background: #FFEB00;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo h1 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 2;
}

.logo span {
  font-size: 60px;
  line-height: 1;
}

.menu-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  text-align: right;
  padding-top: 50px;
}

.opp{
  color: white;
}
.menu-links ul {
  width: 100%;
}

.menu-links ul li {
  padding: 10px;
  color: #494949;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-links ul li:hover {
  background: #494949;
  color: #fff;
}

.scrolldown {
  flex: 1;
  display: flex;
  justify-content: center;
  transform: rotate(-90deg);
}

.scrolldown::before {
  display: inline-block;
  content: "";
  border-top: 1px solid #000;
  width: 65px;
  margin: 0 10px 0 0;
  transform: translateY(10px);
}

.text {
  position: absolute;
  top: 25%;
  right: 180px;
  transform: translateY(-50%);
  text-align: right;
  color: #494949;
}

.text .title {
  font-size: 150px;
  color: white;
}

.watchnow {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  background: #FFEB00;
  padding: 30px 180px 30px 30px;
}

.watchnow a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 3px solid #000;
  padding-bottom: 5px;
}

.fa-play {
  color: #fff;
  font-size: 30px;
  margin-right: 20px;
  cursor: pointer;
}

.media {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
}

.media ul li {
  display: inline-block;
  padding: 20px;
  font-size: 20px;
  color: #494949;
  cursor: pointer;
  border-radius: 50%;
}

.media ul li:hover {
  background: #FFEB00;
}

.ellipse-container {
  width: 608px;
  height: 608px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  margin: 0 auto;
  z-index: -1;
}

.ellipse {
  position: absolute;
  top: 0;
  border-radius: 50%;
  border-style: solid;
}

.ellipse.thin {
  width: 100%;
  height: 100%;
  border-width: 1px;
  border-color: #494949;
  opacity: .5;
}

.ellipse.thick {
  width: 93%;
  height: 93%;
  border-width: 10px;
  border-color: #fff;
  transform: rotate(-45deg);
  top: 12px;
  left: 12px;
}

.ellipse.yellow {
  width: 93%;
  height: 93%;
  border-width: 10px;
  border-color: #FFEB00 transparent;
  transform: rotate(-45deg);
  top: 12px;
  left: 12px;
  animation: ellipseRotate 15s ease-in-out infinite;
}

@keyframes ellipseRotate {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

.circle1,
.circle2 {
  border-style: solid;
  width: 64px;
  height: 64px;
  border-width: 1px;
  border-color: rgba(0,0,0,.5);
  border-radius: 50%;
  position: absolute;
}

.circle1 {
  top: 150px;
  left: 150px;
}

.circle2 {
  bottom: 150px;
  right: 130px;
}

.circle1::before,
.circle1::after,
.circle2::before,
.circle2::after {
  content: '';
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle1::before,
.circle2::before {
  width: 12px;
  height: 12px;
  background: #fff;
  z-index: 1;
}

.circle1::after,
.circle2::after {
  width: 40px;
  height: 40px;
  background: #FFEB00;
}

.circle1 span,
.circle2 span {
  position: absolute;
  top: 25px;
  width: 100px;
  font-size: 14px;
}

.circle1 span {
  left: 75px;
}

.circle2 span {
  left: -90px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #000000;
  top: 0%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay h1 {
  font-size: 100px;
  letter-spacing: 20px;
}

.overlay span {
  font-size: 30px;
  letter-spacing: 3px;
}
#imp{
 color: rgb(8, 0, 0);
 background-color: rgb(213, 241, 48);

}
/* section{
  height: 100vh;
  background-color: orange;
} */
@media only screen and (max-width: 500px) {
  body{
    height: 100vh;
  }
 .overlay {
    background-color: rgb(0, 0, 0);
  }.wrapper .logo{
    flex: 0 0 35%;
    background-color: rgb(225, 248, 94);
    width: 80px; 
    height: 30px;
    font: 4px;
    color: white;
  }.title{
    font-size: 15px;
    color: white;
    right: 180px;
  }.ellipse-container {
  width: 360px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  margin: 0 auto;
  z-index: -1;
}.ellipse.yellow {
  width: 90%;
  height: 90%;
  border-width: 10px;
  border-color: #f5be0b transparent;
  transform: rotate(-45deg);
  top: 14px;
  left: 4px;
  animation: ellipseRotate 15s ease-in-out infinite;
}.watchnow {
  position: absolute;
  top: 93%;
  right: 0;
  transform: translateY(-50%);
  background: #FFEB00;
  padding: 30px 85px 30px 30px;
}ul li {
  color: blue;
  flex: 1;
  display: flex;
  justify-content:flex-start;
  align-items:space-around;
}.text .title{
  margin-bottom: 160px;
  font-size: 50px;
  margin-left: 100px;
}.circle1 {
  right: -20px;
  top: 5px;
}.circle2 {
  right: -10px;
  top: 15px;
}.ellipse.thin {
 display: none;
}.ellipse.thick {
  width: 90%;
  height: 90%;
  border-width: 10px;
  border-color: #fff;
  transform: rotate(-45deg);
  top: 12px;
  left: 4px;
}.media {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
 left: -6px;
  font-size: 5px;
  color: #494949;
  cursor: pointer;
  border-radius: 50%;
}
}
