body {
  background-color: black;
  background-image: url("/sources/backgrounds/background-login.png");
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100%;
  color: black;
  font-family: Verdana;

}

.logo {
  margin-top: -15px;
  background-image: url("/sources/logo_fit.png");
  width: 175px;
  background-repeat: no-repeat;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  
  height: 75px;
  background-color: #372347;
  border-radius: 10px;
}

li {
  float: left;
  height: 75px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 25px;
  text-decoration: none;
  font-size: 28px;
  height: 100%;
}

li a:hover {
  background-color: #2d1b3b;
}

h1 {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 80px;
  
  margin-top: 100px;
}

.signup-field-div {
  background-color: #372347;
  width: 40%;
  height: 350px;
  margin-top: 80px;
  margin-left: 30%;
  
  border-radius: 15px;
}

.space1 {
  height: 50px;
}

.signup-entry {
  padding-top: 50px;
  background-color: #2d1b3b;
  height: 30px;
  width: 74%;
  margin-top: 10px;
  margin-left: 10%;
  padding: 3% 3%;
  
  display: block;
  color: white;
  text-align: left;
  text-decoration: none;
  font-size: 28px;
  
  border-radius: 10px;
  border-width: 0px;
}

button {
  margin-top: 20px;
  height: 60px;
  width: 30%;
  background-color: #9878b3;
  border-radius: 10px;
  border-width: 0px;
  
  color: white;
  text-decoration: none;
  font-size: 28px;
  text-align: center;
  cursor: pointer;
  
  transition-duration: 0.2s;
  
  margin-left: 35%;
}

button:hover {
  filter: brightness(70%);
}