body {
  margin: 0;
  background-image: url("2987559.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
   min-width: 1200px;

}

 

.header {
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;

  background: rgba(130, 127, 225, 0.3); 
  backdrop-filter: blur(1px);

}

.header h1 {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  font-weight: normal;
  letter-spacing: 12px;
  color: rgb(241, 237, 237);
  font-weight: bold;
  z-index: 1000;
  margin: 0;
animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow:
      0 0 5px rgba(255,255,255,0.3),
      0 0 10px rgba(255,255,255,0.2);
  }
  to {
    text-shadow:
      0 0 15px rgba(255,255,255,0.8),
      0 0 25px rgba(255,255,255,0.6),
      0 0 40px rgba(255,255,255,0.4);
  }
}

.footer {
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(165, 163, 233, 0.3); 
  backdrop-filter: blur(1px);

}

.footer h3{
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    font-weight: normal;
    letter-spacing: 12px;
    color: rgb(241, 237, 237);
    font-weight: bold;
    z-index: 1000;
    margin: 0;
}

.Input {
  padding: 20px 80px;
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: white;
  background: rgba(248, 247, 247, 0.4);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: 0.2s ease;
}

.Input:hover {
  color: black;
  background: rgba(248, 247, 247, 0.8);
}

.Input input {
  display: none;
}

.option{
    font-family: "Times New Roman", Times, serif;
    padding: 20px 20px;
    width: 100%;
    position: fixed;
    top: 35%;
    text-align: center;
    font-weight: normal;
    letter-spacing: 7px;
    color: rgb(241, 237, 237,0.5);
    background: rgba(161, 133, 243, 0.05);
    font-weight: bold;
    z-index: 1000;
    margin: 0;
    animation: softGlow 0.5s ease-in-out infinite alternate;
}
@keyframes softGlow {
  from {
    text-shadow:
      0 0 4px rgba(241, 237, 237, 0.23),
      0 0 8px rgba(161, 133, 243, 0.1);
  }
  to {
    text-shadow:
      0 0 10px rgba(241, 237, 237, 0.618),
      0 0 18px rgba(161, 133, 243, 0.25);
  }
}


.ButtonBars {
  width: 100%;
  padding: 5px 8px;
  position: fixed;
  top: 42%;
  left: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: white;
  background: rgba(161, 133, 243, 0.1);
  border: 1px solid rgba(87, 9, 244, 0.3);
  border-radius: 6px;
  backdrop-filter: blur(1px);
  transition: 0.2s ease;
}

.ButtonBars button {
  border: none;
  padding: 10px;
  margin: 20px;
  border-radius: 12px;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.2);
  transition: 0.2s ease;
}

.ButtonBars button:hover {
  background: none;
  transform: scale(2.05);
  backdrop-filter: blur(4px);
}

.ButtonBars img {
  border-radius: 8px;
  display: block;
}

.resultbar {
  font-family: "Times New Roman", Times, serif;
  position: relative;
  padding: 16px;
  background: rgba(103, 58, 239, 0.9);
  border-radius: 8px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  color: white;          /* all text white */
  font-family: sans-serif;
}

.closeButton {
  position: absolute;
  text-align:center;
  top: 8px;
  right: 8px;
  background: #ee0a0a;
  color: aliceblue;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
}

.resultbar img.gradcam-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 12px 0;
}

.Loading {
  font-family: "Times New Roman", Times, serif;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;

  text-shadow: 
     0 0 5px #fff,
     0 0 10px #fff,
     0 0 20px #fff,
     0 0 30px #7f00ff,
     0 0 40px #7f00ff,
     0 0 50px #7f00ff,
     0 0 60px #7f00ff;
  animation: glowPulse 0.5s infinite alternate;
}
@keyframes glowPulse {
  0% {
    text-shadow: 
       0 0 5px #fff,
       0 0 10px #fff,
       0 0 20px #fff,
       0 0 30px #7f00ff,
       0 0 40px #7f00ff,
       0 0 50px #7f00ff,
       0 0 60px #7f00ff;
  }
  100% {
    text-shadow: 
       0 0 10px #fff,
       0 0 20px #fff,
       0 0 30px #fff,
       0 0 40px #7f00ff,
       0 0 50px #7f00ff,
       0 0 60px #7f00ff,
       0 0 80px #7f00ff;
  }
}

.resultbar p{
   font-weight:lighter;
    text-align:right;

}

.resultbar h4, 
.resultbar h3, 
.resultbar p {
  margin: 8px 0;
}