/**
 * @Author: Mael Seewald
 * @Date:   2024-12-11 15:45:18
 * @Last Modified by:   Mael Seewald
 * @Last Modified time: 2024-12-11 16:16:07
 */
::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background-color: rgb(248, 255, 245);
}
main {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
h1 {
  font-size: 100px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 0;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 35vw;
  height: auto;
  background-color: rgb(220, 228, 217);
  border-radius: 10px;
}
input {
  width: 20vw;
  height: 50px;
  border: none;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  margin: 10px;
  background-color: rgb(245, 245, 245);
}
input:focus {
  border: none;
  outline: none;
  width: 20.2vw;
  height: 50.2px;
}
textarea {
  width: 20vw;
  max-width: 20vw;
  min-width: 20vw;
  height: 50px;
  max-height: 200px;
  min-height: 20px;
  border-radius: 5px;
  border: none;
}
textarea:focus {
  border: none;
  outline: none;
  width: 20.2vw;
  height: 50.2px;
}
footer {
  height: 15vh !important;
  min-height: 15vh;
  width: 97vw;
  background-color: rgb(255, 255, 255);
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 20px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 10px;
}
p {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 20px;
  margin: 30px;
  margin-top: 0px !important;
  margin-bottom: 10px !important;
}
a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 20vw;
  background-color: rgb(245, 245, 245);
  text-align: center;
  margin: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20px;
}
