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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e5e5e5;
  padding: 2rem 1rem;
}

footer {
  margin-top: 3rem;
  text-align: center;
  color: rgb(107, 114, 128);
}

.logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 56rem;
  text-align: center;
}
.logo div {
  margin: auto;
}
.logo p {
  margin-top: 0.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.icon {
  position: fixed;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  text-decoration: none;
}

.whatsapp-button {
  left: 2rem;
  bottom: 2rem;
  background-color: #25d366;
}
.whatsapp-button i {
  color: white;
}

.contact-button {
  right: 0rem;
  bottom: calc(50vh - 1.75rem);
  background-color: rgb(107, 114, 128);
  border-radius: 9999px 0 0 9999px;
}
.contact-button i {
  color: white;
}

.close-button i {
  color: #88a;
}

.offcanvas {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  height: 90vh;
  width: 30em;
  max-width: 100vw;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 1rem;
}
.offcanvas header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  height: 2rem;
  margin-bottom: -3rem;
  z-index: 100;
}

@media (max-width: 801px) {
  .offcanvas {
    width: 100%;
    left: 0;
    top: 0;
  }
}
h3 {
  color: #88a;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 1rem;
}

a {
  color: #ddd;
  text-decoration: none;
}

a:hover {
  color: #a33;
}

/*# sourceMappingURL=styles.css.map */
