@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Inter:opsz@14..32&display=swap');

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

body, html {
  height: 100%;
  width: 100%;
  position: relative;
  font-family: "Inter", sans-serif;
}

.video-bg {
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.top-logo {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 113px;
  img {
    width: 100%;
    height: auto;
  }
}


.tagline {
  position: absolute;
  text-align: center;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  h1 {
    font-size: clamp(2.5rem, 2.632vw + 1.842rem, 5rem);
    line-height: 1;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    color: #fff;
  }
  span {
    display: block;
    font-size: clamp(5.625rem, 4.1447rem + 5.9211vw, 11.25rem);
  }
}

aside {
  position: relative;
  height: 100%;
  &:after {
    content: '';
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 39%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 99%);
    height: 180px;
    width: 100%;
    position: absolute;
    bottom: -4rem;
  }
}

footer {
  background: url('../src/images/footer-bg.png') no-repeat;
  height: 496px;
  width: 100%;
  position: relative;
  bottom: 5px;
  background-position: 50% 0%;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
  @media (max-width: 767px) {
    height: 256px;
  }
  .bottom-logo {
    text-align: center;
    z-index: 2;
    margin-bottom: 2rem;
    img {
      width: 258px;
      height: auto;
      @media (max-width: 767px) {
        width: 95px;
      }
    }
  }
  .copyright {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
  }
}

