@charset "utf-8";
  body {
    margin: 0;
    padding: 0;
    font-family: "ofelia-display", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #15150D;	
   /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;*/
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
}


.row-contact {
	display: flex;
    justify-content: center; /* Zentriert den Inhalt vertikal */
    align-items: center; /* Zentriert den Inhalt horizontal */
    text-align: center;
    height: 100vh;
}

/* Media Query für kleinere Auflösungen */
@media screen and (max-width: 800px) {
    .row-contact {
        align-items: flex-start; /* Ändert die Ausrichtung auf flex-start */
    }
}

.column {
    flex: 100%;
    max-width: 100%;
    padding: 0 4px;
	margin: 30px 0 30px 0;
}

.column img {
    max-width: 100%; /* Begrenzt die Bildbreite auf die tatsächliche Breite */
    height: auto; /* Behält das Seitenverhältnis bei */
}


/* Responsive Layout - passt die Spalten bei Bedarf an */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

.contact-link {
    text-align: center;
	font-size: 24px;
}

.contact-text {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.6;
}

.link {
	font-family: "ofelia-display", sans-serif;
	font-weight: 400;
    color: #848484;
    text-decoration: underline; 
}