@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 */
    header{
        margin-top: 12% !important;
    }


    .text-container {
        margin-top: 20% !important;
        width: 80%;
        left: 10% !important;
    }

    .text-container h2 {
        font-size: 50px !important;
    }

}

/* 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 */
}

/* 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;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



/*---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.552);
    z-index: 2;
}

.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%;
    transform: translate(-50%, -50%);
}

/* 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;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 4%;


}





.text-container {
    max-width: 550px; /* Maximale Breite des Containers */
    position: absolute;
    top: 8%;
    left: 20%;
    margin: 0 auto; /* Zentrieren des Containers */
    padding: 0; /* Innenabstand des Containers, nach Bedarf anpassen */
    background-color: #FFFCF8;
    display: flex; /* Setzt das Flexbox-Layout für den Textcontainer */
    flex-direction: column; /* Ändert die Ausrichtung der Textelemente auf Spaltenrichtung */
    align-items: center;
    justify-content: center;
}

.text-container h2 {
    font-size: 100px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    margin-bottom: 5%;

}


.text-container p { 
    font-size: 20px;
    font-family:"Cambria";
    color:  #0F0A03;
    text-align:justify;


}


.impressum{
    position: absolute;
    text-decoration: none;
    font-size: 19px;
    color:black;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    padding: 10px;
    text-align: center;
}
 


footer {
    max-width: 100%;
    color: #FFFCF8;
    position: fixed; /* positioniert am unteren Rand der Ansicht */
    bottom: 0; /* am unteren Rand positionieren */
  
}




/* style neat */

.neat {
    z-index: 4;
    height:93px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    font-family:"Roboto Mono" , monospace;
    font-size: 70px;
    color: black;
    top: 1px;
    left: 97px;
    text-decoration:none;
}




