html {
  height: 100%;
}
body {
  background-color: #000000;

  color: #ff00ff;
  font-family: "Courier New", Courier, monospace;
  height: 100%;
  margin: 0;
  align-content: center;
  display: flex;
  flex-direction: column;
}

#title_fevir {
  color: #ff00ff;
  font-family: "Courier New", Courier, monospace;
  font-size: 3em;
  margin: auto;
  width: fit-content;
}

#links {
  font-size: 1em;
  margin: auto;
  width: fit-content;
}

#links a {
    margin: 0 2em;
}

a {
  color: #ff00ff;
}

form {
  background-color: #FBF3FE;
  margin: 2em;
  padding: 0.5em 1em;
  display: flex;
  flex-direction: column;
  border: solid 0.2em #f7c5fa;
  border-radius: 1em;
  color: #A628D5;
}
.form-item {
  display: flex;
  justify-content: space-between;
  align-content: stretch;
  margin: 0.2em 0;
}
input {
  width: 80%;
}
textarea{
  
  width: 80%;
}
.label{
}
.err:empty{
  display:none;
}
.button-8 {
  width: 100%;
  background-color: #EFE1F4;
  border-radius: 3px;
  border: 1px solid #B27AC7;
  box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #82399D;
  cursor: pointer;
  display: inline-block;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  outline: none;
  padding: 0.3em .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  
}

.button-8:hover,
.button-8:focus {
  background-color: #dbb3ea;
  color: #632c77;
}

.button-8:focus {
  box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}

.button-8:active {
  background-color: #d2a0e4;
  box-shadow: none;
  color: #632c77;
}