* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.background {
  width: 600px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 250px;
  height: auto;
}
.content {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content img {
  width: 100%;
  height: auto;
}
.download-button {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  animation: zoomInOut 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-button img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.footage {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footage img {
  width: 100%;
  height: auto;
}
.free {
  position: absolute;
  top: 83%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.free img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .background {
    width: 100%;
    height: 100vh;
  }
  .logo {
    top: 5%;
  }

  .logo img {
    width: 180px;
  }

  .content {
    top: 20%;
  }

  .content img {
    width: 90%;
  }

  .download-button {
    top: 35%;
    width: 100%;
    max-width: 300px;
  }

  .download-button img {
    width: 100%;
  }

  .footage {
    top: 60%;
  }

  .footage img {
    width: 100%;
    max-width: 500px;
  }

  .free {
    top: 88%;
  }

  .free img {
    width: 85%;
  }
}

/* For smaller mobile screens (under 480px) */
@media (max-width: 480px) {
  .logo {
    top: 7%;
  }
  .logo img {
    width: 200px;
  }

  .content {
    top: 20%;
    width: 100%;
  }

  .content img {
    width: 100%;
    max-width: 650px;
  }

  .download-button {
    top: 35%;
    width: 100%;
    max-width: 300px;
  }

  .download-button img {
    width: 100%;
  }

  .footage {
    top: 60%;
    width: 100%;
  }

  .footage img {
    width: 100%;
    max-width: 650px;
  }

  .free {
    top: 85%;
  }

  .free img {
    width: 100%;
    max-width: 650px;
  }
}
