@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400&display=swap");
:root {
  --x: 50%;
  --y: 50%;
  --size: 35vmin;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  background-color: black;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  overflow: hidden;
  /*
  cursor: none;
  */
}
body {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "Lexend", serif;
  text-align: center;
  line-height: 1;
  color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
}
main {
  position: relative;
}
h1 {
  font-size: clamp(25px, 8vw, 50px);
  color: white;
 
}
p {
  color: white;
}
#flashlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  isolation: isolate;
  pointer-events: none;
}
#bg,
#bg_mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(https://images.unsplash.com/photo-1561344640-2453889cde5b?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MTgzMzI3NjR8&ixlib=rb-4.0.3&q=85)
    no-repeat center / cover;
  pointer-events: none;
}
#bg {
  filter: brightness(0.8);
}
#bg_mask {
  --light: 1;
  -webkit-mask-image: radial-gradient(
    circle var(--size) at var(--x) var(--y),
    black,
    rgba(0, 0, 0, 0)
  );
          mask-image: radial-gradient(
    circle var(--size) at var(--x) var(--y),
    black,
    rgba(0, 0, 0, 0)
  );
  filter: brightness(var(--light));
  -webkit-animation: flash 1.5s ease-in-out infinite;
          animation: flash 1.5s ease-in-out infinite;
  mix-blend-mode: overlay;
}
@-webkit-keyframes flash {
  from {
    --light: 5;
  }
  to {
    --light: 1;
  }
}
@keyframes flash {
  from {
    --light: 5;
  }
  to {
    --light: 1;
  }
}
.loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.social-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-button {
  background-color: #007bff38;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.social-button:hover {
  background-color: #007bff38;
  color: azure;
}

#sound-toggle {
  position: relative;
  margin: 20px auto;
  width: 50px; /* Set width to fit the button */
  height: 50px; /* Set height to fit the button */
  border-radius: 50%;
  background-color:azure;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
 
}

#sound-toggle:hover {
  background-color: #007bff38;

}

#sound-icon {
  width: 70%; /* Scale the image to fit within the button */
  height: auto; /* Maintain the aspect ratio */
}
.social-buttons-bottom {
  position: fixed; /* Fixed positioning */
  bottom: 20px; /* Space from the bottom */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust to center */
  z-index: 1000; /* Ensure it appears above other content */

}

.social-button {
  padding: 10px 20px; /* Adjust padding for button */
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
  color: #333; /* Text color */
  border-radius: 20px; /* Rounded corners */
  text-decoration: none; /* No underline */
  font-size: 16px; /* Font size */
}
