@font-face {
  font-family: 'Limelight';
  src: url('/static/Limelight-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'alk-sanet';
  src: url('/static/alk-sanet.ttf') format('truetype');
}

@font-face {
  font-family: 'Lobster';
  src: url('/static/Lobster.ttf') format('truetype');
}


.title {
  font-family: 'Lobster', sans-serif;
}

body {
    background: url('/static/stripes.jpg') no-repeat center center;
    background-size: cover;
    image-rendering: pixelated;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: alk-sanet;
}

p {
  letter-spacing: -1px;
  margin: 2px;
}

.solid_color {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65vh;
  background: #d80a0a;
  z-index: -1;
}

.div_title {
  background-color: #ffffff;
  font-size: 3vh;
  padding: 20px;
  margin: 4vh;
  border-radius: 10px;
}

.div_form {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 4vh 3vh;
  padding: 6vh 20px;
  border: dashed 3px black;
}

.div_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a {
  margin: 0px;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.input_string {
  border: 1px solid #e7e7e7;
  height: 34px;
  width: 195px;
  border-radius: 12px;
  text-align: center;
}

.input_bool {
  background-color: #ffc812;
  border: 1px solid black;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 600px) {
.solid_color {
  height: 79vh;
}
.div_title {
  padding: 4px;
}
.title {
  padding: 0px;
}

h2 {
  margin: 2vh;
}
}

