/*KONTAKT TITLE*/
.contacttitle h1 {
  font-family: "Space Mono",monospace;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}


/*KONTAKTBOX*/
.contactbox {
  display: flex;
  flex-direction: column;
  border: black 5px solid;
  width: 1100px;
  margin: auto;
}

.contactboxheader {
  display: flex;
  width: 100%;
  padding: 20px;
  background-color: rgb(214, 181, 255);
}

.contactboxheader h1 {
  font-family: monospace;
  font-size: 48px;
}

.contactcontent {
  display: flex;
  flex-direction: row;
}

.contactpicture {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  width: auto;
  border-top: 5px solid black;
  align-items: center;
  padding-right: 15px;
}

.contactpicture img {
  display: block;
  height: 400px;
  width: auto;
}

.contactpicture p {
  margin-bottom: 10px;
}

.contacttext {
  display: flex;
  flex-direction: column;
  border-top: 5px solid black;
  border-left: 5px solid black;
  width: 100%;
}

.contactname {
  width: 100%;
  height: auto;
  border-bottom: 5px solid black;
}

.contact2box {
  display: flex;
  flex-direction: row;
  border-bottom: 5px solid black;
}

.contactbirth {
  border-right: 5px solid black;
  padding-right: 50px;
}

.contacttext h1 {
  font-family: monospace;
  font-size: 35px;
  letter-spacing: 5px;
  padding-left: 10px;
  padding-top: 10px;
}

.contacttext h2 {
  font-size: 28px;
  padding-left: 10px;
  padding-bottom: 10px;
}

/* KONTAKTFORMULAR */
.contactformbox {
  display: flex;
  flex-direction: column;
  border: black 5px solid;
  width: 1100px;
  margin: 40px auto;
}

.contactformheader {
  display: flex;
  width: 100%;
  padding: 20px;
  background-color: rgb(214, 181, 255);
}

.contactformheader h1 {
  font-family: monospace;
  font-size: 40px;
}

.contactform {
  display: flex;
  flex-direction: column;
  border-top: 5px solid black;
  padding: 20px;
}

.formrow {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.formrow label {
  font-family: monospace;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: bold;
}

.formrow input,
.formrow textarea {
  border: 5px solid black;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  font-family: monospace;
  background-color: #fdfdfd;
}

.formrow button {
  font-family: monospace;
  font-size: 22px;
  font-weight: bold;
  border: 4px solid black;
  border-radius: 8px;
  padding: 10px 20px;
  background-color: rgb(214, 181, 255);
  cursor: pointer;
  width: fit-content;
}

.formrow button:hover {
  background-color: rgb(190, 150, 240);
}