.didact-gothic-regular {
  font-family: "Didact Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'Didact Gothic', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-top: 50px; /* Platz für den fixierten Header */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 20px 0;
}

nav ul li img.logo {
    height: 15px; /* Höhe des Logos anpassen */
    margin-right: 20px; /* Abstand zwischen Logo und erstem Menüpunkt */
    filter: invert(100%);
}

section#home {
    position: relative;
    height: 600px; /* Höhe des Abschnitts anpassen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

section#home .overlay {
    position: absolute;
    top: 37.5%;
    left: 25%;
    width: 50%;
    height: 25%;
    background-color: rgba(0, 0, 0, 0.8); /* Grauer Overlay mit Transparenz */
    display: flex;
    justify-content: center;
    align-items: center;
}

section#home .content {
    position: relative;
    z-index: 1;
}

section#home {
    background: url('architekt.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section#projects .project {
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

input  {
  width: 300px;
  height: 25px;
}

textarea  {
  width: 600px;
  height: 150px;
}