body {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/124512_up_00211__by_unbound_curiosities_dg4rfl6.jpg");
  opacity:70%; /* Adjust the opacity */
  z-index: -1;
  pointer-events: none; /* Ensures the pseudo-element doesn't interfere with content interaction */
}

.container {
  font-size: 1.7rem;
  max-width: 800px;
  margin: 32px auto;
  padding: 32px;
  margin: 0 auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.footer__icon{
  font-size: 2rem;
  margin: 0 12px;
}


h1,
.button {
  font-family: "Helvetica Neue", sans-serif;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

label,
input[type="file"] {
  transition: all 0.3s ease-in-out;
}

label:hover,
input[type="file"]:hover {
  color: #3e8e41;
  cursor: pointer;
}

.button {
  font-size: 24px;
  font-weight: bold;
  background-color: #af7f4c;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  background-color: #3e5a8e;
}

#result {
  margin-top: 48px;
  font-size: 24px;
  line-height: 1.5;
}

