body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .column {
        width: 100%;
    }
}
.content-wrapper {
    max-width: 90%; 
    margin: 0 auto; 
    padding: 20px; 
}
@media (max-width: 768px) {
    .content-wrapper {
        max-width: 100%; 
        padding: 10px; 
    }
}
.ein-drittel {
    width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
	margin-bottom: 20px;
}
.madimi-one-regular {
  font-family: "Madimi One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.navigation {
    background-color: #1c2828;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: white;
}
.navigation a {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.header {
    height: 100vh;
    background: url('bilder/header-csc-bw.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-text {
    background-color: rgba(28, 40, 40, 0.5);
    font-family: "Madimi One", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 2vw;
    border-radius: 10px;
    color: white;
    margin-left: 20px;
    padding: 20px;
	text-align: center;
}
.content-section, .form-section, .image-section, .footer {
	font-family: "Barlow", sans-serif;
	font-weight: 100;
    padding: 20px;
    text-align: center;
}
.content-section h2, .form-section h2 {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
    color: #333;
}
h1 {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
}
h3 {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
}
.row {
    display: flex;
    justify-content: space-around;
}
.column {
    flex-basis: 30%;
}
.form-section {
    background-color: #1c2828;
    border-radius: 10px;
    color: white;
    padding: 20px;
}
.form-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-section input, .form-section textarea, .form-section button {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.form-section button {
    background-color: #333;
    color: white;
    cursor: pointer;
}
.footer {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	font-size: 9px;
    background-color: #1c2828;
    color: white;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1c2828;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}