@import url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');

.underdog-regular {
    font-family: "Underdog", system-ui;
    font-weight: 400;
    font-style: normal;
  }

body {
  margin: 0;
  font-family: monospace;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.733);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  /* Above Three.js canvas */
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
  backdrop-filter: blur(1px);
  /* Add a slight blur for a glass effect */
}

.content {
  background-color:transparent;
  /* Transparent black */
  padding: 20px;
  border-radius: 15px;
  max-width: 80%;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin: 5px 0;
}

.button {
  display: inline-block;
  margin: 10px 0;
  text-align: center;

}

.button a {
  text-decoration: none;
  padding: 10px 25px;
  background-color: rgba(255, 255, 255, 0.1); /* Slight transparent background */
  color: #fff;
  border-radius: 25px; /* Rounded button shape */
  font-weight: bold;
  font-size: larger;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

}

.button a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Slightly lighter on hover */
  color: #F02050;
  transform: scale(1.05); /* Slight scale effect on hover */

}

.button i {
  font-size: 1.5rem;
  margin-right: 10px;
  transition: color 0.3s ease; /* Smooth color change */

}

.button a:hover i {
  color: #F02050; /* Change icon color on hover */
  
}
