body,
html {
  height: 100%;
}
body body,
html body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #333333;
  color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img {
  max-width: 1100px;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.button {
  background-color: #444444;
  outline: none;
  font-size: 20px;
  border: none;
  margin-right: auto;
  margin-left: auto;
  color: whitesmoke;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}
.button:hover {
  background-color: #575757;
}
.button .button:hover + * {
  filter: brightness(0);
}
.button .button:has(+ *:hover) {
  filter: brightness(0);
}

#fileSelect {
  display: inline-flex;
  cursor: pointer;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border-radius: 10px;
  margin: 10px 0px;
  transition: all 0.3s ease-in-out;
  background-color: #212121;
}
#fileSelect:hover {
  background-color: #2c2c2c;
  color: #dddddd;
}

#Back {
  width: 130px;
  height: 50px;
  border-radius: 40px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  background-color: #6d6e6e;
  top: 20px;
  left: 10px;
  font-size: 2em;
  text-decoration: none;
  color: whitesmoke;
  transition: 0.4s;
}
#Back:hover {
  background-color: #818181;
}

body {
  gap: 10px;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  border-radius: 18px;
  height: 40px;
  font-weight: bolder;
  background-color: #212121;
  text-decoration: none;
}
a {
  color: whitesmoke;
}/*# sourceMappingURL=style.css.map */