html, body {
  height: 100%;
  margin: 0;
  background: url('back.gif') no-repeat center center fixed;
  background-size: cover;
}

h1{
  color: white;
}

h2{
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  font-family: Arial, sans-serif;
}

.option {
  margin: 10px;
  padding: 15px 25px;
  font-size: 16px;
  cursor: pointer;
  color: white;
  background-color: blueviolet;
  border-width: 3px; /* Set thickness */
  border-style: solid; /* Required to make border visible */
  border-color: white; /* Set color */
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
button:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); /* Whitish glow */
  transform: scale(1.05); /* Slightly enlarges the button */
}
button:active {
  transform: scale(0.95);
  background-color: rgba(138, 43, 226, 0.5); /* Faint BlueViolet background */
  box-shadow: 0 0 20px rgba(138, 43, 226, 1), 0 0 40px rgba(138, 43, 226, 0.6);
}

.restart_button {
  margin: 10px;
  padding: 15px 25px;
  font-size: 16px;
  cursor: pointer;
  color:  blueviolet;
  background-color: white;
  border-width: 3px; /* Set thickness */
  border-style: solid; /* Required to make border visible */
  border-color: blueviolet; /* Set color */
  border-radius: 30px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.all{
  display: flex;
}
.options{
  display: flex;
  flex-direction: column;
}
.outputs{
  padding-top: 50px;
  padding-left: 50px;
}

.glass-container {
  padding-left: 10px;
  width: 800px; /* Adjust as needed */
  height: 450px;
  background: rgba(255, 255, 255, 0.2); /* Translucent white */
  border-radius: 20px;
  backdrop-filter: blur(20px); /* Blurred glass effect */
  -webkit-backdrop-filter: blur(15px); /* For Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Soft white border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
  padding: 20px;
  color: white; /* Light text for contrast */
  font-size: 18px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
