* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-height: 100%;
  background: linear-gradient(to right, #000, #000830);
  background-size: 200% 200%;
}

body {
  min-height: 100%;
  height: 100%;
  line-height: 1.5;
  font-family: "Trebuchet MS", Tahoma, sans-serif;
  background: linear-gradient(to right, #000, #000830);
  background-size: 200% 200%;
}

.logo {
  max-width: 270px;
  margin-bottom: 1.5rem;
}

.background-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  object-fit: cover;
}

main {
  margin-left: auto;
  margin-right: auto;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left {
  background: linear-gradient(to right, #000, #000830);
  background-size: 200% 200%;
  animation: gradientAnimation 40s ease infinite;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.left-wrap {
  margin-top: auto;
  margin-bottom: auto;
}

@media (min-width: 988px) {
  main {
    flex-direction: row;
  }

  .left {
    width: 50%;
    max-width: 50%;
    margin-top: auto;
    margin-bottom: auto;
  }

  .right {
    width: 50%;
    max-width: 50%;
  }
}

.left {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.right {
  background-color: #ececec;
  width: 100%;
  height: 100%;
  display: flex;
}

h1 {
  margin-bottom: 1.5rem;
}

address {
  font-style: normal;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.btn {
  display: inline-block;
  background-color: #fff;
  padding: 0.5rem 1rem;
  color: #000;
  position: relative;
  text-decoration: none;
  transition: all 300ms;
  font-size: 1.15rem;
}

.btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}

.btn::before,
.btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 150ms ease;
}

.btn::before {
  top: -4px;
}

.btn::after {
  bottom: -4px;
}

.btn:hover::before {
  top: 0;
}

.btn:hover::after {
  bottom: 0;
}

.btn:hover {
  opacity: 0.7;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.5s ease-out,
    transform 1.5s ease-out;
  transition-delay: 0s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
