* {
  overflow: hidden;
  color: white;
  padding: 5px;
  font-weight: 100;
  text-shadow: 5px 5px 5px rgb(0, 0, 44);
  text-decoration: none;
}
html {
  background-image: url("../../assets/Screenshot\ 2023-08-12\ 224445.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  size: fill;
}

a {
  transition: all ease-in-out 0.5s;
  width: auto;
  height: auto;
  font-size: xx-large;
  margin: 0;
}
a:hover {
  text-decoration: underline blue;
  transition: all ease-in-out.5s;
}

button {
  transition: all ease-in-out 0.2s;
  background-color: rgb(140, 140, 236);
  border-radius: 5px;
  scale: 150%;
}
button:hover {
  cursor: pointer;
  scale: 165%;
  transition: all ease-in-out 0.2s;
}

footer {
  margin-bottom: 100%;
}

.input-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.input-form label {
  display: block;
  margin-bottom: 5px;
}

.input-form input,
.input-form textarea {
  color: black;
  text-shadow: none;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

.input-form button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}
