@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  background-color: #006039;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  row-gap: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.top-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.top-image-content img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.container h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.container p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
  margin-bottom: 20px;
}

.insta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  
}

.insta-link a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.3s ease;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  
}

.phone-link a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.3s ease;
}

.phone-link a:hover {
  color: #e1306c;
}

.insta-link a:hover {
  color: #e1306c;
}

.insta-link svg {
  color: #fff;
  margin-right: 8px;
}

.insta-link a:hover svg {
  color: #e1306c;
}

@media screen and (max-width: 768px) {
  .top-image-content img {
    max-width: 120px;
  }

  .logo-content img {
    max-width: 300px;
  }
}

@media screen and (max-width: 482px) {
  .top-image-content img {
    max-width: 100px;
  }

  .logo-content img {
    max-width: 250px;
  }

  .container h1 {
    font-size: 30px;
  }

  .insta-link a {
    font-size: 12px;
  }

  .insta-link svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 320px) {
  .top-image-content img {
    max-width: 80px;
  }

  .logo-content img {
    max-width: 200px;
  }

  .container h1 {
    font-size: 24px;
  }
}