html {
  background-color: rgb(14, 15, 14);
  user-select: none;
  cursor: default;
}

body {
  margin: 0;
}

div.header {
  height: 60vh;
}

div.header > img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  object-position: center;
}

div.header > h1 {
  position: absolute;
  inset: 1% auto auto 1%;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 40px;
  color: white;
}

div.navgiator {
  width: 100%;
  margin: 0 1% 0 1%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

div.navgiator > button {
  background: rgb(35, 37, 35);
  border: none;
  font-size: 18px;
  letter-spacing: 2px;
  color: white;
  font-family: "Outfit";
  padding: 15px 20px 15px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

div.navgiator > button::before {
  content: "";
  position: absolute;
  left: 0;
  height: 3em;
  width: 3px;
  background-color: var(--before-color);
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s linear;
  z-index: -1;
}

div.navgiator > button:hover::before {
  content: "";
  width: 100%;
}

h1.headline {
  color: white;
  font-family: "Outfit";
  font-style: italic;
}

div.videos {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 10px 0 10px;
  gap: 10px;
}

div.videos > iframe {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 500px;
  max-width: 100%;
  box-sizing: border-box;
}

p.details {
  color: white;
  font-family: "Barlow-Condensed";
  font-weight: 700;
  font-size: 18px;
}

div.buttons {
  display: flex;
  width: 100%;
  margin: 20px 0 0 0;
  inset: auto 1% auto 1%;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

div.buttons > button {
  display: flex;
  align-items: center;
  height: 150px;
  width: 300px;
  justify-content: flex-start;
  border-radius: 10px;
  border: 1px transparent solid;
  background-color: rgb(46, 46, 46);
  color: white;
  font-family: "Outfit";
  letter-spacing: 2px;
  font-size: 19px;
  cursor: default;
  transition: 0.3s;
}

div.buttons > button:hover {
  border: 1px rgb(173, 173, 255) solid;
}

div.buttons > button > img {
  width: 150px;
  height: auto;
}

/*For Mobile*/
@media (max-width: 768px) {
  div.videos > iframe {
    flex-basis: 100px;
  }
  div.buttons {
    flex-direction: column;
  }
}
