/* Font Family
$poppinsRG: 'poppinsRG';
$poppinsBold: 'poppinsBold';
*/

@font-face {
  font-family: "poppinsRG";
  src: url("assets/fonts/Poppins-Regular.otf");
}
@font-face {
  font-family: "poppinsBold";
  src: url("assets/fonts/Poppins-Bold.otf");
}

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

body {
  background-image: url("assets/home-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  font-family: "poppinsRG";
  text-align: center;
  padding: 80px 20px;
}

main {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  margin-top: 80px;
}

h2,
h4 {
  color: #393939;
}
h2 {
  font-size: 28px;
}
h4 {
  font-size: 20px;
  padding: 2px;
  border-bottom: 3px solid #393939;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.video-box {
  width: 100%;
}

.video-box video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px #d3d3d3;
}

@media (max-width: 1200px) {
  main {
    width: 100%;
    flex-direction: column;
  }
  .video-box {
    width: 80%;
  }
}
@media (max-width: 767px) {
  main {
    width: 100%;
    flex-direction: column;
  }
  .video-box {
    width: 100%;
  }
}
