@font-face {
  font-family: 'UbuntuMono';
  src: url('UbuntuMono-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'UbuntuMono', Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

body::before {
  content: "";
  background-image: url('ring_light.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.7; /* Adjust the opacity to your preference */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

h1 {
  font-size: 4em;
  color: #333;
}

h4 {
  font-size: 1.5em;
  color: #3498db; /* Light Blue color */
}

p {
  font-size: 1.2em;
  color: #666;
}

div {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.under-construction {
  background-color: rgba(255, 255, 255, 0.8); /* Add an overlay for readability */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}