body {
  margin: 0;
  padding: 0;
  background: url("/assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.contact-box {
  background-color: rgba(87, 12, 140, 0.559);
  backdrop-filter: blur(12px);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.258);
  text-align: center;
}
.logo {
  width: 150px;
}

.contact-box h1 {
  margin-bottom: 20px;
  font-size: 34px;
  color: rgb(255, 255, 255);
}

.button {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  color: rgb(229, 229, 229);
  transition: background-color 0.3s;
}

.button.email {
  background-color: #0078d467;
  border: 2px solid #005bb5;
}

.button.email:hover {
  background-color: #005bb5;
  color: aliceblue;
}

.button.whatsapp {
  background-color: #25d36570;
  border: 2px solid #25d366;
}

.button.whatsapp:hover {
  background-color: #1ebf57;
  color: aliceblue;
}
.contact-box p {
  color: #ff1573;
  background-color: #2c0a0abd;
  padding: 8px;
  border: 2px solid #ff1573;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .contact-box {
    margin: 0 8px;
    padding: 40px 15px;
  }
  .contact-box h1 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
