body,
html {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.container .desktop-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 110%;
  z-index: -1;
  display: block;
}
.container .mobile-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
}
.container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-family: "Campton", sans-serif;
}
.container .content p {
  font-size: 1.75cqw;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5%;
}
.container .content .content-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 25%;
  padding-right: 2%;
}
.container .content .content-buttons .web-img,
.container .content .content-buttons .trailer-img {
  width: 12cqw;
  cursor: pointer;
  transition: transform 0.5s ease;
  margin-right: 5%;
}
.container .content .content-buttons .web-img:hover,
.container .content .content-buttons .trailer-img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .container .desktop-bg {
    display: none;
  }
  .container .mobile-bg {
    display: block;
  }
    .container .content {
        width: 100%;
    }
  .container .content p {
  display: none;
}
  .container .content .content-buttons {
    gap: 30%;
  }
  .container .content .content-buttons .web-img,
  .container .content .content-buttons .trailer-img {
    width: 25cqw;
  }
}
