header {
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: white;
  z-index: 100;
}

body {
  background-color: black;
  color: white;
  font-family: Host Grotesk, Arial;
  margin: 0;
  padding: 0;
}

.logo-div {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.giyaent-logo {
  height: 30px;
}

.line-div {
  background-color: white;
  height: 50px;
  width: 2px;
  border-radius: 50px;
  margin-left: 15px;
  margin-right: 15px;
}

.giyaent-logo-text {
  height: 30px;
}

.master-div {
  position: relative;
}

.master-div video {
  height: 100vh;
  width: 100%;
  background-position: absolute;
  z-index: 10;
  object-fit: cover;
}

.master-container {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-one {
  margin-top: 250px;
}

.p-text {
  font-size: 40px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container-two {
  margin-top: 150px;
  margin-bottom: 50px;
}

.social-media-icons-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.social-media-icons {
  height: 30px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
}

.container-three {
  font-size: 15px;
}

/*This is for MOBILE*/

@media (max-width: 550px) {
  header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .giyaent-logo {
    height: 25px;
  }

  .giyaent-logo-text {
    height: 25px;
  }

  .container-one {
    margin-top: 225px;
  }

  .p-text {
    font-size: 22px;
  }

  .container-two {
    margin-top: 200px;
    margin-bottom: 35px;
  }

  .social-media-icons {
    height: 36px;
  }

  .container-three {
    font-size: 13px;
  }
}

/* This is for TABLET*/

@media (min-width: 551px) and (max-width: 999px) {
  header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .giyaent-logo {
    height: 45px;
  }

  .giyaent-logo-text {
    height: 45px;
  }

  .container-one {
    margin-top: 375px;
  }

  .p-text {
    font-size: 43px;
  }

  .container-two {
    margin-top: 400px;
    margin-bottom: 35px;
  }

  .social-media-icons {
    height: 45px;
  }

  .container-three {
    font-size: 22px;
  }
}

/*This is for DESKTOP*/

@media (min-width: 1000px) {
  .p-text {
    font-size: 60px;
  }
}