/* HTML RESET */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML RESET ENDE */

/* GENERAL STYLING */

html {
    scroll-behavior: smooth;
}

::-moz-selection {
    color: var(--main-color);
    background: #ffffffcc;
    text-shadow: none;
}

::selection {
    color: var(--main-color);
    background: #ffffffcc;
    text-shadow: none;
}

:root {
    --main-color: #242424;
}

body {
    font-family: aktiv-grotesk-extended, sans-serif;
    background-color: var(--main-color);
    cursor: none;
    overscroll-behavior: none;
}

.Text-Outlines {
    color: transparent !important;
    -webkit-text-stroke-width: 1px !important;
    -webkit-text-stroke-color: #ffffff !important;
}

h1 {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    text-transform: uppercase;
    color: #ffffff;
}

h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #242424;
}

a {
    color: #ffffff;
    text-decoration: none;
    cursor: none;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #242424;
}

ul {
    list-style: none;
}

button {
    padding: 6px 20px 8px 20px;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 30px;
    transition: all 200ms ease-in-out;
    cursor: none;
}

button a {
    color: inherit;
}

button:hover {
    color: var(--main-color);
    background: #ffffff;
}

button:focus {
    outline: none;
}

img {
    color: #ffffff;
}

/* GENERAL STYLING ENDE */

/* CURSOR */

.cursor {
    display: none;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: rgba(255, 255, 255, 1);
    z-Index: 9999;
    transition: all 200ms ease-in-out;
    transition-property: width, height, background;
}

.cursorGrow {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0.5)
}

/* CURSOR ENDE*/

/* NAVIGATION */

.Navbar {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, #242424 0%, #24242410 80%, #24242400 100%);
}

.Icon_Hamburger_Menue {
    width: 35px;
    height: 30px;
    padding: 30px 35px 30px 30px;
}

.Menue {
    position: fixed;
    opacity: 0;
    pointer-events: visible;
    visibility: hidden;
    top: 0;
    z-index: -1;
    padding: 80px 0 0 30px;
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    transition: 400ms ease-in-out;
}

.Menue_Active {
    visibility: visible;
    opacity: 1;
}

.Menue a {
    padding-left: 8px;
    opacity: 0;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 200;
    font-size: 28px !important;
    line-height: 60px !important;
    color: #ffffff;
    transition: all 200ms ease-in-out;
}

.Menue a:hover {
    color: #ffffff !important;
}

.MenueDesktop {
    display: none;
    margin: 30px 0px 30px 0px;
}

.MenueDesktop li {
    display: inline-block;
    margin-right: 20px;
}

.MenueDesktop a {
    padding: 20px 20px 20px 0px;
    font-size: 20px;
    font-weight: 200;
    color: #ffffff;
    transition: all 200ms ease-in-out;
}

.MenueDesktop a:hover {
    color: #ffffff9d;
}

/* NAVIGATION ENDE */

/* CONTAINER */

.Container {
    margin: 0 30px;
}

/* CONTAINER ENDE */

/* DESCRIPTION */

.Description {
    overflow: hidden;
    padding-top: 60px;
}

/* DESCRIPTION ENDE*/

/* ABOUT ME SECTION */

.AboutMeBG {
    background-color: var(--main-color);
}

.About_Me p {
    color: #ffffff;
    font-weight: 200;
}

.About_Me h1 {
    padding-top: 120px;
}

/* ABOUT ME SECTION ENDE */

/* FOOTER */

.footerBG {
    background-color: var(--main-color);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0px 20px 0px;
    background-color: var(--main-color);
}

.Footer_Links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
}

.Footer_Links a {
    padding: 20px 20px 20px 0px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 200;
    color: #ffffff;
    transition: all 200ms ease-in-out;
}

.Footer_Links a:hover {
    color: #ffffff9d;
}

.Scroll_up {
    transition: all 200ms ease-in-out;
}

/* FOOTER ENDE */

@media (max-width: 360px) {
    /*ALL HANDYS AUSSER S5, G4, SE */
    h1 {
        font-size: 40px;
        line-height: 40px;
    }
    .Menue {
        padding: 80px 0 0 30px;
    }
    .Menue a {
        font-size: 40px;
        line-height: 60px;
    }
}

@media (min-width: 600px) {
    /* I PAD */
    h1 {
        font-size: 80px;
        line-height: 80px;
    }
    .Icon_Hamburger_Menue {
        width: 40px;
        padding: 30px 30px 30px 45px;
    }
    .Menue {
        padding: 100px 0 0 60px;
    }
    .Menue a {
        padding-left: 0px;
        font-size: 80px;
        line-height: 120px;
    }
    .Container {
        margin: 0 50px;
    }
    .About_Me h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .Footer_Links {
        width: 200px;
    }
    .footer p {
        font-size: 18px;
        line-height: 22px;
    }
    .footer img {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 800px) {
    /* DESKTOP SCHMAL */
    .cursor {
        display: block;
    }
    .Menue {
        display: none;
    }
    .Icon_Hamburger_Menue {
        display: none;
    }
    .MenueDesktop {
        display: inline-block;
    }
    .Container {
        margin: 0 80px;
    }
    .Scroll_up:hover {
        transform: translateY(-10px);
    }
}

@media (min-width: 992px) {
    /* IPAD PRO */
    h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .footer img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1250px) {
    /* DESKTOP */
    .MenueDesktop {
        margin: 30px 0px 50px 0px;
    }
    .Container {
        margin: 0 220px 0 160px;
    }
}

@media (min-width: 1600px) {
    /* DESKTOP BREIT */
    .MenueDesktop {
        margin: 30px 0px 50px 0px;
    }
    .Container {
        margin: 0 450px;
    }
}