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

body,
header,
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  font-family: "Poppins", sans-serif;
  color: white;
  margin: 0;
  height: 100svh; /* Corrected */
  justify-content: center;
  gap: 20px;
  background-color: rgba(230, 230, 235, 1) !important;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #ffffff;
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Cpath fill='none' stroke-width='100' stroke-opacity='0.2' id='a' d='M0-478l-413.96 717h827.92L0-478l-413.96 717h827.92z'/%3E%3C/defs%3E%3Cg transform='scale(0.541)' style='transform-origin:center'%3E%3Cg transform='rotate(92.4 0 0)' style='transform-origin:center'%3E%3Cg transform='rotate(-86.4 0 0)' style='transform-origin:center'%3E%3Cg transform='translate(1000 750)'%3E%3Cuse stroke='%2309CDFF' href='%23a' transform='rotate(-43.2 0 0) scale(0.568)'/%3E%3Cuse stroke='%2300cbff' href='%23a' transform='rotate(-37.8 0 0) scale(0.622)'/%3E%3Cuse stroke='%2300c8ff' href='%23a' transform='rotate(-32.4 0 0) scale(0.676)'/%3E%3Cuse stroke='%2300c6ff' href='%23a' transform='rotate(-27 0 0) scale(0.73)'/%3E%3Cuse stroke='%2300c3ff' href='%23a' transform='rotate(-21.6 0 0) scale(0.784)'/%3E%3Cuse stroke='%2300c0ff' href='%23a' transform='rotate(-16.2 0 0) scale(0.838)'/%3E%3Cuse stroke='%2300bdff' href='%23a' transform='rotate(-10.8 0 0) scale(0.892)'/%3E%3Cuse stroke='%2300b9ff' href='%23a' transform='rotate(-5.4 0 0) scale(0.946)'/%3E%3Cuse stroke='%2300b5ff' href='%23a'/%3E%3Cuse stroke='%2300b1ff' href='%23a' transform='rotate(5.4 0 0) scale(1.054)'/%3E%3Cuse stroke='%2300adff' href='%23a' transform='rotate(10.8 0 0) scale(1.108)'/%3E%3Cuse stroke='%232ea8ff' href='%23a' transform='rotate(16.2 0 0) scale(1.162)'/%3E%3Cuse stroke='%2349a3ff' href='%23a' transform='rotate(21.6 0 0) scale(1.216)'/%3E%3Cuse stroke='%235e9dff' href='%23a' transform='rotate(27 0 0) scale(1.27)'/%3E%3Cuse stroke='%237297ff' href='%23a' transform='rotate(32.4 0 0) scale(1.324)'/%3E%3Cuse stroke='%238390ff' href='%23a' transform='rotate(37.8 0 0) scale(1.378)'/%3E%3Cuse stroke='%239489ff' href='%23a' transform='rotate(43.2 0 0) scale(1.432)'/%3E%3Cuse stroke='%23a481ff' href='%23a' transform='rotate(48.6 0 0) scale(1.486)'/%3E%3Cuse stroke='%23b378ff' href='%23a' transform='rotate(54 0 0) scale(1.54)'/%3E%3Cuse stroke='%23c26fff' href='%23a' transform='rotate(59.4 0 0) scale(1.594)'/%3E%3Cuse stroke='%23cf63ff' href='%23a' transform='rotate(64.8 0 0) scale(1.648)'/%3E%3Cuse stroke='%23dc57ff' href='%23a' transform='rotate(70.2 0 0) scale(1.702)'/%3E%3Cuse stroke='%23e947fe' href='%23a' transform='rotate(75.6 0 0) scale(1.756)'/%3E%3Cuse stroke='%23f433f4' href='%23a' transform='rotate(81 0 0) scale(1.81)'/%3E%3Cuse stroke='%23FF0AE9' href='%23a' transform='rotate(86.4 0 0) scale(1.864)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  background-size: cover;
  background-position: center;

  pointer-events: none;
  opacity: 0.5; /* Adjust the opacity as needed */
}

body * {
  position: relative;
  z-index: -2;
}

figure {
  overflow: hidden;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: -70px;
  z-index: 150000;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  position: relative; /* Added to ensure proper stacking context */
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  object-position: top 6px right 0px;
}

h1 {
  margin: 50px 0px 0px 0px;
  color: rgb(22, 22, 22);
  font-size: 24px;
  font-weight: 700;
}

h2 {
  color: rgb(22, 22, 22);
  font-size: 15px;
  margin: -15px 0 -15px 0;
  font-weight: 500;
}

h3 {
  color: rgb(22, 22, 22);
  font-size: 12px;
  margin: -1px 0 5px 0;
  font-weight: 400;
}

main {
  gap: 15px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  border-width: 2px;
  padding: 20px 35px 40px 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 275px;
  z-index: 5; /* Ensuring main is lower than figure */
}

#icons {
  width: 200px;
  display: flex;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 0px;
  overflow: visible;
}

#icons img {
  height: 40px;
  width: auto;
  max-width: 40px;
  margin-left: 15px;
  transform: translateX(-10px);
  overflow: visible;
}

#icons img:hover {
  cursor: pointer;
  transform: scale(1.2) translateX(-10px);
  overflow: visible;
}

button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  width: 280px;
  height: 50px;
  background-color: #ffffff;
  color: #333;
  border: none;
  border-radius: 20px;
  transform-origin: center;
}

button:hover {
  cursor: pointer;
  border: 1px solid rgba(30, 30, 30, 0.1);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05) !important;
}

img {
  height: 100px;
  width: 100px;
}

#pleaserotate-backdrop {
  background: rgb(50, 50, 60) !important;
}

#pleaserotate-message {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

#pleaserotate-graphic {
  fill: white;
  stroke: white;
}

a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}
