@import "reset.css";
@import "mobile.css";
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");

:root {
  --main-color: #e6463d;
  --main-bg-color: #f0f0f0;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  display: flex;
  background-color: var(--main-bg-color);
  color: var(--main-bg-color);
  cursor: default;
}

@keyframes animate-shadow {
  50% {
    text-shadow: 8px 8px 8px #aaa;
  }
}

.header {
  height: 100vh;
  width: 60%;
  color: var(--main-color);
  position: fixed;
  display: flex;
  justify-content: center;
  align-content: center;
  /* max-width: 550px; */
  margin: 50px 50px;
  text-align: justify;
}

.header__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px;
}

.header__title {
  font-size: 5rem;
  text-shadow: 5px 5px 5px #aaa;
  animation: animate-shadow 4s ease-in-out infinite;
}

.header__title:nth-child(3) {
  margin-bottom: 100px;
}

.header__text {
  margin-top: 30px;
  line-height: 25px;
}

.header__text:nth-child(1),
.header__text:nth-child(2) {
  font-size: 1.5rem;
  margin: 0;
}

.header__text:nth-child(3) {
  width: 50%;
  margin-bottom: 100px;
}

.header__text-box a {
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
}

/* main-videos section  */

.main {
  background-color: var(--main-color);
  margin-left: 40%;
  width: 100%;
  z-index: 1;
}

.videos {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 10%,
      transparent,
      transparent,
      transparent,
      transparent
    )
    #e7473c;
  /* height: 50vh; */
  margin-bottom: 100px;
  font-size: 1vw;
  /* padding: 0px 10px; */
  padding-top: 20px;
}

.videos__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 20px 40px;
}

.videos__title div:first-child {
  font-size: 2.2vw;
}

.videos__title div:nth-child(2) {
  text-align: end;
  width: 40%;
}

.videos__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

img {
  width: 80%;
  box-shadow: 5px 5px 15px rgb(39, 39, 39);
  transition-duration: 2s;
}

.play-icon {
  position: absolute;
  color: var(--main-bg-color);
  font-size: 5rem;
  transition-duration: 1s;
}

.play-icon:hover {
  color: var(--main-color);
  transition: 1s;
  transition: all 0.5s ease-in-out;
}

img:hover {
  opacity: 0.7;
  transition: all 1s ease-in-out;
}

.videos:last-child {
  margin-bottom: 150px;
}

.main__bottom-text {
  text-align: center;
  margin-bottom: 50px;
  font-size: 0.7rem;
}

.main__bottom-text a {
  text-decoration: none;
  color: var(--main-bg-color);
}
