* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'opensans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}

.container {
  text-align: center;
  color: white;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.container img {
  width: 7%;
  height: auto;
  align-items: center;
  margin-bottom: 200px;
}

.coming-soon h2 {
  font-family: 'montserrat', 'sans-serif';
  font-size: 100pt;
  font-weight: 3rem;
  margin-bottom: 10px;
}

.coming-soon p {
  font-size: 12pt;
  font-weight: 650;
  padding-top: 0%;
  padding-bottom: 0%;
  margin-top: 150px;
  margin-bottom: 30px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.social-media a img {
  width: 25px;
  height: auto;
  margin-top: 50px;
  margin-bottom: 50%;
}

.bg {
  background-image: url('BG-WEB.jpg'); /* Adjust the path as needed */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Send background behind other content */
}

@media (max-width: 768px) {
  .logo {
      font-size: 2.5rem;
  }

  .coming-soon h2 {
      font-size: 2.5rem;
  }

  .coming-soon p {
      font-size: 1rem;
  }

  .social-media a img {
      width: 35px;
      height: 35px;
  }
}

@media (max-width: 480px) {
  .logo {
      font-size: 2rem;
  }

  .coming-soon h2 {
      font-size: 2rem;
  }

  .coming-soon p {
      font-size: 0.9rem;
  }

  .social-media a img {
      width: 30px;
      height: 30px;
  }