@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oi&display=swap');


/* Kleine Bildschirme */
@media only screen and (max-width: 700px) {
    /* Hier passt du deine Stile für kleine Bildschirme an */
 
    .flex-container {
        flex-wrap: wrap; /* Neu hinzugefügt für Umbruch bei Bedarf */

    }
    
    .text-container {
        margin-top: 20%;
        width: 80%;
    }

    .image img {
        margin-left: 10%;
        padding-bottom: 10%;
     
    }
  
    .text-container h2 {
        font-size: 50px !important;
    }

    .text-container p {
        font-size: 16px !important;
    }

    footer {
        position: relative !important;
        margin-top: 10% ;
    }
}



/* Mittelgroße Bildschirme */
@media only screen and (min-width: 701px) and (max-width: 1024px) {
    /* Hier passt du deine Stile für mittelgroße Bildschirme an */
   
    .flex-container {
        flex-wrap: wrap; /* Neu hinzugefügt für Umbruch bei Bedarf */
        margin-left: 5% !important;

    }
    
    .text-container {
        max-width: 570px !important;

    }

    .image img {
        margin-left: 10%;
        padding-bottom: 10%;
     
    }
  
    .text-container h2 {
        font-size: 60px !important;
    }

    .text-container p {
        font-size: 20px !important;
    }

    footer {
        position: relative !important;
        margin-top: 10% ;
    }
}

/* Große Bildschirme */
@media only screen and (min-width: 1025px) {
    /* Hier passt du deine Stile für große Bildschirme an */
}

/* CSS Document */
body {
    margin: 0;
    padding: 0;
    background-color: #FFFCF8;
}



/*---Menü---*/



.navbar {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.8s cubic-bezier(1, 0, 0, 1);
    background-color: rgba(19, 19, 19, 0.541);
}

.change {
    left: 0;
}

.menu-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 25px;
    left: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index:3;
}


.line {
    width: 100%;
    height: 8px;
    background-color: black;
    transition: all 0.8s;
}

.change .line-1 {
    transform: rotateZ(-405deg) translate(-19px, 5px);
}

.change .line-2 {
    opacity: 0;
}

.change .line-3 {
    transform: rotateZ(405deg)  translate(-19px, -5px);
}


.nav-list {
    text-align: left;
}

.nav-item {
    list-style: none;
    margin: 10px;
}

.nav-link {
    text-decoration: none;
    font-size: 19px;
    color: white;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    letter-spacing: 1px;
    position: relative;
    padding: 3px 0;
}

.nav-link::before,
.nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: yellow;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.nav-link::after {
    bottom: 0;
    transform-origin: right;
}


.nav-link::before {
    top: 0;
    transform-origin: left;
}

.nav-link:hover::before,
.nav-link:hover::after {
    transform: scaleX(1);

}



.menu-btn:hover {
    opacity: 0.5;
}


/* Social Media */


.media-header {
    position: absolute;
    right: 2%;
    top:20px;
}

/* Stil für das Social Media Symbol */
.media-header i {
    font-size: 50px; 
    cursor: pointer;
}


#insta {
    background-color: transparent;
    cursor: pointer;
    color:black;
}

#insta:hover {
    color: yellow;
    transition: 0.5s;
}




header {

    position: relative;
    height: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;


}




/* Flexbox für Text und Bild */
.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-left: 15%;
}

.text-container {
    max-width: 500px;
    text-align: left;
    align-content: center;
}

.image {
    max-width: 100%;
}

.image img {
    width: 55%;
    padding-left: 10%;
    margin-top: 10%;
}



.text-container h2 {
    font-size: 100px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    margin-bottom: 10px;

}


.text-container p { 
    font-size: 20px;
    font-family:"Cambria";
    color:  #0F0A03;
    text-align:left;


}


footer {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 5%;
    position: absolute;
    bottom: 0;
}

.impressum {
    position: absolute;
    text-decoration: none;
    font-size: 16px;
    color: black;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    padding: 10px;
    text-align: center;
    margin: auto; /* Hinzugefügte Zeile, um den Text horizontal zu zentrieren */
}




/* style neat */

.neat {
    font-family:"Roboto Mono" , monospace;
    position: absolute;
    font-size: 70px;
    color: black;
    text-decoration:none;
    left: 100px;
}




