/* NEW NEW NEW NEW NEW NEW */

/* Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
        height: 1vw;
    }
    ::-webkit-scrollbar-track {
        background:#00000000;
    }
    ::-webkit-scrollbar-thumb {
        background: #0047aba5;
        border-radius: 25px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .photo::-webkit-scrollbar {
        display: none; /* Für Chrome, Safari und Edge */
    }

/* Flex */
    div, header, footer, a, form{
        display: flex;
        transition-duration: 1.5s;
    }
    .row{
        flex-direction: row;
    }
    .center, a{
        align-items: center;
    }
    .evenly{
        justify-content: space-evenly;
    }
    .between{
        justify-content: space-between;
    }
    .column{
        flex-direction: column;
    }
    .absolute{
        position: absolute;
    }
    .relative{
        position: relative;
    }
    .hidden{
        overflow: hidden;
    }
    .scroll{
        overflow: scroll;
    }
    .wrap{
        flex-wrap: wrap;
    }
    .column-count{
        display: inline;
        column-count: 2;
        column-gap: 3vh;
    }
    .column-count-four{
        display: block;
        column-count: 4;
        column-gap: 3vh;
    }

/* Body */
    body{
        padding: 5vw 5vw 0 5vw;
        margin: 0;
        margin-top: 5vw;
        overflow-x: hidden;
    }
    .photo{
        padding: 25vh 0 0 0;
    }

/* Header */
    header{
        margin: 1vw;
        height: 5vw;
        width: 96vw;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        img{
            height: 145%;
            transform: translateY(-25%) ;
        }
    }

/* Footer */
    footer{
        transform: translateX(-4vw);
        width: 96vw;
    }
    .footer-photo{
        transform: translateX(0);
        width: calc(100vw - 2vw);
    }
    .social{
        height: 3vh;
    }
    .socials:hover{
        transition-duration: 1s;
        img{
            border-radius: 50%;
            box-shadow: 5px 5px 10px #000000;
        }
    }

/* Blurry */
    .blurry{
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

/* Colors */
    .darkgrey, body{
        background-color: #101010;
    }
    .lightgrey{
        background-color: #303030a5;
    }
    .darkblue, header, footer{
        background-color: #0047aba5;
    }
    .red{
        color: #ff0000;
    }
    .green{
        color: #00ff00;
    }

/* Shadow */
    .box, button, .button, .shadow{
        box-shadow: 5px 5px 10px #000000;
    }
    .shadow-darkblue{
        box-shadow: 5px 5px 10px #0047aba5;
    }
    .i-nb-one{
        box-shadow: 15px 15px 25px #284040;
    }
    .i-nb-two{
        box-shadow: 15px 15px 25px #305068;
    } 

/* Corners */
    .big-round{
        border-radius: 32px;
    }
    .small-round{
        border-radius: 16px;
    }
    .no-border{
        border-style: none;
    }

/* Gap */
    .gap{
        gap: 3vh;
    }
    .double-gap{
        gap: 6vh;
    }
    .margin-bottom{
        margin-bottom: 3vh;
    }
    .margin-bottom-photo{
        margin-bottom: calc(-64px + 3vh);
    }

/* Fonts */
    p, input, textarea, .button{
        color: #e6f0ff;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 0;
        font-size: 24px;
    }
    p{
        text-align: justify;
    }
    .heading{
        font-size: calc(2 * 24px);
        font-weight: bold;
        text-align: left;
    }
    .sub-heading{
        font-size: calc(1.5 * 24px);
        font-weight: bold;
        text-align: left;
    }
    .caption{
        font-family:'Courier New', Courier, monospace;
        font-size: calc((1/2) * 24px);
    }
    .emoji{
        font-size: calc(4 * 24px);
    }
    .enormous{
        font-size: 50vh;
    }
    .no-justify{
        text-align: left;
    }
    .date::before{
      content: '📆 ';
    }
    .location::before{
      content: '🗺️ ';
    }

/* hyphens */
    p, .button {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

/* Box */
    .box{
        margin-top: 1vw;
        padding: 1vw;
    }
    footer.box{
        padding: 0.25vw 1vw 0.25vw 1vw;
        margin: 3vh 0 3vh 0;
    }

/* Button */
    button, .button{
        background: #303030a5;
        transition-duration: 1s;
        border-radius: 32px;
        border-style: none;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        padding: 10px;
        width: 17.5vw;
        p{
            text-align: center;
        }
    }
    button:hover, .button:hover{
        background: #0047aba5;
    }

/* Margin & Padding */
    .padding{
        padding: 1vw;
    }
    .corner-height-padding{
        padding: 64px 0 0 0;
    }

/* Containber*/
    .container{
        width: 100%;
    }
    .quarter{
        width: calc((100vw - 9vh)/4);
    }
    .p-container{
        width: calc(100% - 2vw);
        min-width: calc(100% - 2vw);
        max-width: calc(100% - 2vw);
    }
    .full{
        width: 90vw;
    }
    .full-half{
        width: calc((90vw - 5vw)/2);
    }
    .left{
        width: 17.5vw;
    }
    .right{
        width: 67.5vw;
    }
    .right-half{
        width: calc((67.5vw - 3vh)/2);
    }
    .top{
        position: absolute;
        top: 1vw;
        left: 1vw;
        right: 1vw;
    }
    .bottom{
        position: absolute;
        bottom: 1vw;
        left: 1vw;
        right: 1vw;
    }
    .resume-height{
        height: 20vw;
        .container{
            width: 80vw;
        }
    }
    .resume-width{
        width: 45vw;
    }
    .corner-height{
        height: 64px;
        .background{
            transform: translate(-50%);
            img{
                height: calc((67.5vw - 3vh)/2);
            }
        }
    }
    .corner-translate{
        transform: translateY(-64px);
    }
    .fit-height{
        height: fit-content;
    }
    .foto-height{
        height: 130vh;
    }
    .square{
        width: 18vw;
        height: 18vw;
        left: 0;
        top: 0;
        z-index: 3;
    }
    .scroller{
        height: 18vw;
        width: calc(70vw - 3vh);
        top: 1vw;
        left: 10vw;
        padding-left: calc(10vw + 3vh);
        overflow-x: auto;
        .background{
            align-self: center;
            img{
                width: 47vw;
                transform: translate(-1vw);
                filter: blur(8px);
            }
        }
    }
    .scroller-list{
        display: inline-flex;
        padding-bottom: 1vw;
    }

/* I-Frame */
    iframe{
        border-radius: 32px;
        width: 45%;
        height: 352px;
    }
    .foto-frame{
        width: 100%;
        height: 100%;
        border-style: none;
        overflow: auto;
    }

/* Image */
    .profile{
        width: 100%;
    }    
    .round{
        border-radius: 50%;
    }
    .hundred-height{
        height: 100%;
    }
    .hover{
        .background{
            img{
                transition: transform 1s ease-in-out;
            }
        }
    }
    .hover:hover{
        .background{
            img{
                transform: scale(1.5);
            }
        }
    }

/* Background und Foreground */
    .background{
        position: absolute;
        left: 0;
        z-index: -1;
        img{
            filter: blur(16px);
            opacity: 0.65;
            width: 110%;
        }
    }
    .foreground-full{
        position: absolute;
        left: 0;
        z-index: 5;
    }
    .background-frame{
        position: absolute;
        width: 17.5vw;
    }
    .background-margin{
        margin-top: calc(17.5vw + 3vh);
    }

/* Rotated Mobiles */
    .rotated-mobile{
        display: none;
    }  
    @media screen and (max-width: 1175px) and (min-width: 801px) {
        .rotated-mobile{
            display: block;
        }
        .not-rotated-mobile{
            display: none;
        }
        /* Flex */
            .row{
                flex-wrap: wrap;
            }
            .column-count{
                column-count: 1;
            }
            .column-count-four{
                column-count: 2;
                column-gap: 5vh;
            }

        /* Body */
        /* Header */
        /* Footer */
            footer{
                height: 5vh;
            }
            .social{
                height: 4.5vh;
            }
            .footer-photo{
                width: 100vw;
            }

        /* Shadow */
            .i-nb-one{
                box-shadow: 10px 10px 20px #284040;
            }
            .i-nb-two{
                box-shadow: 10px 10px 20px #305068;
            } 

        /* Corners */
        /* Gap */
            .gap{
                gap: 5vh;
            }
            .double-gap{
                gap: 10vh;
            }
            .margin-bottom{
                margin-bottom: 5vh;
            }
            .margin-bottom-photo{
                margin-bottom: calc(-64px + 5vh);
            }
            
        /* Fonts */
        /* Box */
        /* Buttons */
            button, .button{
                overflow: hidden;
            }
        
        /* Margin & Padding */
            .padding{
                padding: 2.5vw;
            }

        /* Container */
            .foto-height{
                height: 250vh;
            }
            .right-half{
                width: 67.5vw;
            }
            .quarter{
                width: calc((100vw - 5vh)/2);
            }
            .top{
                top: 2.5vw;
                left: 2.5vw;
                right: 2.5vw;            
            }
            .bottom{
                bottom: 2.5vw;
                left: 2.5vw;
                right: 2.5vw;            
            }
            .p-container{
                width: calc(100% - 5vw);
                min-width: calc(100% - 5vw);
                max-width: calc(100% - 5vw);
            }
            .resume-height{
                height: 35vw;
                .container{
                    width: 80vw;
                }
            }
            .square{
                height: 30vw;
            }
            .scroller{
                height: 30vw;
                width: calc(67vw - 5vh);
                top: 2.5vw;
                left: 11.5vw;
                padding-left: calc(11.5vw + 5vh);
            }
            .scroller-list.row{
                flex-direction: row;
                flex-wrap: nowrap;
            }

        /* I-Frame */
            iframe{
                width: 67.5vw;
                margin-bottom: 5vh;
            }

        /* Image */
        /* Background */   
            .background-margin{
                margin-top: calc(17.5vw + 5vh);
            }  
    }

/* Mobile-Phones */
    .mobile{
        display: none;
    } 
    @media screen and (max-width: 800px) {
        .mobile{
            display: block;
        }
        .not-mobile{
            display: none;
        }

        /* Flex */
            .row{
                flex-direction: column;
                gap: 3vh;
            }
            .right-half{
                .row{
                    flex-direction: row;
                }
            }
            .column-count{
                column-count: 1;
            }
            .column-count-four{
                column-count: 1;
            }

        /* Body */
            body{
                padding: 10vw 10vw 0 10vw;
                margin-top: 8vh;
            }
            .photo{
                padding: 50vh 0 0 0;
            }

        /* Header */
            header{
                margin: 5vw;
                height: 7vh;
                width: 88vw;
                img{
                    height: 105%;
                    transform: translateY(-15%) ;
                }
            }

        /* Footer */
            footer{
                transform: translateX(-5vw);
                overflow: hidden;
                height: 3vh;
                width: 88vw;
            }
            footer.row{
                flex-direction: row;
            }
            .social{
                height: 2.5vh;
            }
            .footer-photo{
                width: 100vw;
            }

        /* Shadow */
            .i-nb-one{
                box-shadow: 8px 8px 16px #284040;
            }
            .i-nb-two{
                box-shadow: 8px 8px 16px #305068;
            } 

        /* Corners */
        /* Gap */
        /* Fonts */
            p, input, textarea, .button{
                font-size: 18px;
            }
            .heading{
                font-size: calc(2 * 18px);
            }
            .sub-heading{
                font-size: calc(1.5 * 18px);
            }
            .caption{
                font-size: calc((1/2) * 18px);
            }
            .emoji{
                font-size: calc(4 * 18px);
            }
            .enormous{
                font-size: 40vw;
            }
            
        /* Box */
            .box{
                margin-top: 5vw;
            }

        /* Buttons */
            button, .button{
                width: 100%;
                background: #0047aba5;
            }
            button:hover, .button:hover{
                background: #303030a5;
            }

        /* Margin & Padding */
            .padding{
                padding: 5vw;
            }

        /* Container */       
            .full, .full-half, .left, .right{
                width: 80vw;
            }
            .quarter{
                width: 100vw;
            }
            .right-half{
                width: 80vw;
            }
            .left{
                align-items: center;
            }
            .top{
                top: 5vw;
                left: 5vw;
                right: 5vw;
            }
            .bottom{
                bottom: 5vw;
                left: 5vw;
                right: 5vw;
            }
            .p-container{
                width: calc(100% - 10vw);
                min-width: calc(100% - 10vw);
                max-width: calc(100% - 10vw);
            }
            .resume-height{
                height: calc(40vh + 2vw);
                .container{
                    width: 80vw;
                    .padding{
                        padding: 1vw;
                    }
                }
            }
            .foto-height{
                height: 200vh;
            }
            .resume-width{
                width: 60vw;
            }
            .square{
                width: 40vh;
                height: 5vh;
                flex-direction: row;
                transform: rotate(-90deg) translate(-17.5vh, -17.5vh);
                background-color: #303030a5;
            }
            .scroller{
                height: calc(40vh - 8vw);
                width: calc(74vw - 5vh);
                top: 5vw;
                left: calc(2.5vh + 1vw);
                padding-left: calc(2.5vh + 5vw);
                .background{
                    img{
                        width: auto;
                        height: calc(40vh - 8vw);
                    }
                }
            }
            .scroller-list.row{
                flex-direction: row;
            }

        /* I-Frame */
            iframe{
                width: 100%;
            }

        /* Image */
        /* Background */
            .background-frame{
                width: 40vw;
            }
            .background-margin{
                margin-top: calc(40vw + 3vh);
            }
    }

/* Small Mobile */
    .small-mobile{
        display: none;
    }
    @media screen and (max-width: 400px) {
        .small-mobile{
            display: block;
        }
        .not-small-mobile{
            display: none;
        }
        .heading{
            font-size: calc(1.5 * 18px);
        }
        .sub-heading{
            font-size: calc(1.25 * 18px);
        }
    }