@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

:root {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #0c0c0c;
}

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

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 40px;
}

.title {
  width: 100%;
  margin: 0 0 24px 0;
  border: 1px solid #0c0c0c4e;
  color: #e4e4e4;
  text-align: center;
  padding: 60px;
  font-size: 28px;
  font-family: "Ubuntu";
  font-weight: 500;
}

.title span {
  color: rgb(156, 0, 223);
}

.video-container {
  max-width: 1280px;
  width: 100%;
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.container h2 {
  color: #e4e4e4;
  font-family: "Ubuntu";
  padding-top: 24px;
}

.shadow-box-1 {
  position: absolute;
  top: 16%;
  left: 0px;
  width: 400px;
  height: 400px;
  border-top: 5px solid #9c00df;
  border-right: 5px solid #9c00df;
  opacity: 0.5;
  z-index: -1;
}

.shadow-box-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-bottom: 5px solid #9c00df;
  border-left: 5px solid #9c00df;
  opacity: 0.5;
  z-index: -1;
}

.shadow-box-3 {
  position: absolute;
  bottom: 90%;
  right: 0px;
  width: 200px;
  height: 400px;
  border-left: 5px solid #9c00df;
  border-bottom: 5px solid #9c00df;
  opacity: 0.5;
  z-index: -1;
}

.desc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60%;
}

.desc-container-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60%;
  border-left: 3px solid #9c00df80;
  padding-left: 24px;
}

.desc-container-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60%;
  border-right: 3px solid #9c00df80;
  padding-right: 24px;
}

.description {
  color: #e4e4e4;
  text-indent: 1.5em;
  text-align: justify;
  font-family: "Ubuntu";
}

@media (max-width: 1500px) {
  .shadow-box-3 {
    display: none;
  }
}

@media (max-width: 1000px) {
  .shadow-box-1 {
    display: none;
  }
}

@media (max-width: 840px) {
  .shadow-box-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 20px;
    max-width: 95%;
  }

  .desc-container {
    max-width: 90%;
  }

  .description {
    font-size: 15px;
  }
}
