*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{scroll-behavior: smooth;}
body{
    overflow: hidden;
}

img,picture,video{
    width: 100%;
    height: auto;
}

h1{
    font-family: 'Chillax';
    font-weight: 700;
}
h2{
    font-family: 'Chillax';
    font-weight: 500;
}
h3{
        color: whitesmoke;
        font-family: 'Synonym','Inter','Calibri';
        font-weight: 400;
}
h4{
    color: whitesmoke;
    font-family: 'Synonym','Inter','Calibri';
    font-weight: 200;
}

.width100 {
    width: 100%;
}

.mr-sm {
    margin-right: 2rem
}

.main-nav {
    font-family: 'Chillax';
    font-weight: 600;
    transition: 0.5s;
    background-color: #16161d23; 
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Parallax Config */
.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}
    
.parallax-section {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #16161da6;
    font-size: 2em;
    text-align: center;
}



.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create three equal columns that sits next to each other */
.column {
    flex: 33%;
    max-width: 100%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 30em) {
    .column {
    flex: 100%;
    max-width: 100%;
    }
}

/* Background Bilder */
.heroSection {
    background: linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.158)), url(../assets/Bilder/CrabMech3.png) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.secondSection {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/Bilder/365c55f0725a633e2096aeed6c69ed37.png) center/cover no-repeat;
}

.thirdSection {
    font-family: 'Chillax', sans-serif;
    position: inherit;
}


/* Desktop Eigenschaften Hauptnavigation */
@media screen and (min-width:50em) {

    header {
    display: flex;
    font-family: 'Chillax', sans-serif;
    font-size: 2em;
    background-color: #16161d;
    }

    header ul {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-around;
    gap: 100px;
    }

    li{
        position: relative;
    }

    .Icon{
        width: 100vw;
        display: flex;
        justify-content: center;
        position: relative;
    }
    .Icon img{
    height: auto;
    min-width: 2em;
    width: 10%;
    max-width: 3em;
    position: absolute;
    top: -30px;
    }
    header nav a {
    text-decoration: none;
    color: whitesmoke;
    }

    header nav a:hover {
    color: #ff1D25;
    transition: 0.3s;
    }

    .desktopHide{
        display: none;
        transition: 0.5s;
    }

    h1{
        font-size: 10em;
        transition: 0.5s;
        letter-spacing: 0.2em;
    }

    .name{
        mix-blend-mode: lighten;
        filter:opacity(80%);
        filter: brightness(50%) contrast(500%);
        padding: 0.2em;
        border-radius: 4%;
        transition: 0.5s;
    }
    .about {
        font-size: 10em;
    }

    .introduction{
        padding-top: 0;
        text-align: left;
        display: flex;
        justify-content: left;
        align-items: right;
        text-align: right;
        width: auto;
    }
    .aboutSection{
        position: absolute;
        z-index: 2;
        top: 1320px;
    }
    .aboutSection h1{
        font-size: 2em;
    }
    .aboutSection img{
        border-radius: 4em;
        max-width: 20%;
        float: right;
    }
    .thirdSection{
    margin-top: 18em;
    margin-bottom: 2em;
    }

    /* Container for skills */
    .container {
        display: flex;
        position: relative;
        width: 100%; /* Full width */
        height: 25%;
        background-color: #240a0ec9;
        justify-content: space-around;
        align-items: center;
        padding: 1em 1em 1em 1em;
    }
    .container img{
        width: 5em;
        height: 5em;
        display: block;
        justify-content: center;
        position: relative;
        filter: grayscale(100%);
    }
    .container img:hover{
            filter: grayscale(0%);
    }

    .imagetitle{
        position: absolute;
        opacity: 0%;
    }

    .imagetitle:hover{
        opacity: 100%;
        position: absolute;
    }

    .skills {
        text-align: right; /* Right-align text */
        padding-top: 0.5em; /* Add top padding */
        padding-bottom: 0.5em; /* Add bottom padding */
    }
    .Impressum{
        margin-top: 3%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.2vh;
        font-family: 'Synonym', sans-serif;
        text-align: left;
        color: whitesmoke;
        height:max-content;
        margin-bottom: 2%;
        text-decoration: none;
    }

    .Impressum h1{
        padding: 2%;
        font-size: 2em;
    }
}

  /* mobile Eigenschaften Hauptnavigation - Hamburgermenu */
@media screen and (max-width:50em) {

    .hide {display: none}
    .show {display: block !important}

    .hideThisName{
        display: none !important;
    }
    .menu-icon {
        position: absolute;
        right: 2em;
        top: 2em;
        width: 4em;
        height: 4em;
        border-radius: 20%;
        cursor: pointer;
        transition: 0.5s;
        background: url(../assets/Bilder/logo.svg) center/contain no-repeat;
        }

    .dropdownBurgerMenu li a {
        color: whitesmoke;
    }

    .menu-icon>a>div {
        padding: 0.2em 0.2em;
        margin-bottom: 0.3em;
        padding-right: 1rem;
    }

    header ul {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 5em;
        justify-content: right;
        transition: 0.5s;
        background-color: #16161d;
    }
    header ul li{
        padding: 0.1em 0.1em;
        font-weight: 400;
        text-align: center;
        font-size: 80%;
    }

    header ul nav a {
        text-decoration: none;
        color: whitesmoke;
        display: flex;
        background-color: #1f1c1dde;
        transition: 0.5s;
    }

    header nav {
        max-height: 0;
        overflow: hidden;
        transition: all 1s;
    }
    
    h1{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        font-size: 1em;
        transition: 0.5s;
        }
    
        .name{
        display: flex;
        flex-direction: column;
        padding-right:  0.5em;
        padding-left:  0.5em;
        border-radius: 10%;
        transition: 0.5s;
        mix-blend-mode: screen;
        letter-spacing: 0.2em;
        }

        .thirdSection {
            margin-top: 2.5em;
        }

    /*
    .introduction{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: auto;
    } */

    .introduction{
        padding-top: 10%;
        padding-right: 0%;
        padding-bottom: 10%;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
        max-width: 20em;
        font-weight: 700;
        font-size: x-large;
    }
    .Novaki1{
        background-color: #ff1D25;
    }

    .Novaki1, .Novaki2, .Novaki3 {
        font-size: 5rem;
    }

    .inDaMiddle{
        padding: 5rem 0 5rem 0;
    }
    .container{
        background-color: #240a0ec9;
        padding: 1em;
    }
    .container img{
        display: inline;
        max-width: 20%;
        justify-content: center;
        align-items: center;
    }

    .aboutSection img{
        border-radius: 4em;
        max-width: 60%;
        justify-self: center;
        justify-content: center;
        align-items: center;
        float: right;
        z-index: 1;
    }
    .thirdSection{
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .aboutSection h1{
        font-size: 1.5em;
    }

    .Impressum{
        margin-top: 2%;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 0.95vh;
        font-family: 'Synonym', sans-serif;
        text-align: left;
        color: whitesmoke;
        margin-bottom: 2%;
        text-decoration: none;
    }


    .Impressum h1{
        font-size: x-large;
        background-color: #16161db2;
        filter: blur(50%);
        border-radius: 2em;
        text-align: center;
    }
}



span{
    color: #ff1D25;
}

.largetext{
    font-family: 'Chillax', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20em;
    font-weight: 400;
    font-size: xx-large;
    text-align: left;
    padding-left: 0%;
    padding-top: 4%;
}

/* Die Antwort auf alles ist... 42 */
.content{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2%;
    font-kerning: auto;
    background-color: #16161da6;
    text-align: left;
}

a{
    text-decoration: none;
    width: 100px;
    color: whitesmoke;
}

a:visited {
    color: whitesmoke;
} 
a:hover {
    color:#ff1D25;
}  

a:active {
    color: #ff1D25;
} 

.footer1 img{
    height: 100px;
    position: relative;
}

.footer1{
    margin: 5em 0;
}

.footer2{
    background-color: #16161d;
    height: 2em;
    text-align: center;
    font-weight: 700;
    font-size: xx-large;
    text-decoration: none;
}

.footer2 h2{
    color: inherit;
}

/* Parallax */

.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    }

.parallax-section {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2em;
    text-align: center;
    }


@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Extralight.woff2');
}
@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Light.woff2');
}

@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Regular.woff2');
}
@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Medium.woff2');
}
@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Semibold.woff2');
}
@font-face {
    font-family: 'Chillax';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/Fonts/Chillax/Chillax-Bold.woff2');
}

@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../assets/Fonts/Synonym/Synonym-Extralight.woff2');
}
@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/Fonts/Synonym/Synonym-Light.woff2');
}
@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/Fonts/Synonym/Synonym-Regular.woff2');
}
@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../assets/Fonts/Synonym/Synonym-Medium.woff2');
}

@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/synonym/synonym-semibold.woff2');
}

@font-face {
    font-family: 'Synonym';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/synonym/synonym-Bold.woff2') format('woff2');
}