/* 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 */

::-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 {
    text-decoration: none;
    cursor: none;
    color: #ffffff;
}

b {
    font-weight: 600;
}

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

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 90%, #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;
    font-style: normal;
    color: #ffffff;
    transition: all 200ms ease-in-out;
}

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

/* NAVIGATION ENDE */

/* CONTAINER */

.Container {
    margin: 0 30px;
}

/* CONTAINER ENDE */

/* HERO-SECTION */

.Hero {
    width: 100%;
    height: auto;
}

.HeroText {
    padding: 120px 0px 0px 0px;
}

.HeroText ul li {
    overflow: hidden;
    height: 56px;
}

.Hero ul li h1 {
    font-size: 48px;
    margin: 10px 0px 0px -2px;
    animation: textFade 1000ms cubic-bezier(0.5, 0, 0.5, 1);
    animation-delay: 0ms;
    animation-fill-mode: backwards;
}

@keyframes textFade {
    0% {
        margin-top: 140px
    }
    100% {
        margin-top: 10px
    }
}

/* HERO_SECTION ENDE */

/* ABOUT ME SECTION */

.Description {
    margin: 40px 0px 40px 0px;
    display: grid;
    grid-template-columns: minmax(200px, 600px);
    gap: 20px 40px;
}

/* ABOUT ME SECTION ENDE */

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0;
}

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

.footer p {
    font-weight: 300;
    color: #ffffff;
    transition: all 200ms ease-in-out;
}

.underline {
    margin-top: 2px;
    opacity: 0;
    width: auto;
    height: 1px;
    background-color: #ffffff;
    transition: 200ms ease-in-out;
}

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

/* FOOTER ENDE */

@media (max-width: 360px) {
    h1 {
        font-size: 32px;
        line-height: 32px;
    }
    .Menue {
        padding: 80px 0 0 30px;
    }
    .Menue a {
        font-size: 40px;
        line-height: 60px;
    }
    .HeroText {
        padding: 80px 0px 0px 0px;
    }
    .HeroText ul li {
        overflow: hidden;
        height: 48px;
    }
    .Hero ul li h1 {
        font-size: 40px;
        margin: 10px 0px 0px 0px;
    }
}

@media (min-width: 600px) {
    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;
    }
    .HeroText {
        margin-left: -4px;
        padding: 120px 0px 0px 0px;
    }
    .HeroText ul li {
        overflow: hidden;
        height: 85px;
    }
    .Hero ul li h1 {
        font-size: 80px;
        margin: 10px 0px 0px -2px;
    }
    .Description {
        grid-template-columns: minmax(200px, 600px);
        gap: 20px 40px;
    }
    .Footer_Links {
        width: 200px;
    }
    .footer p {
        font-size: 18px;
        line-height: 22px;
    }
    .footer img {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 800px) {
    .cursor {
        display: block;
    }
    .Menue {
        display: none;
    }
    .Icon_Hamburger_Menue {
        display: none;
    }
    .MenueDesktop {
        display: inline-block;
    }
    .Container {
        margin: 0 80px;
    }
    .HeroText {
        margin-left: -4px;
        padding: 160px 0px 0px 0px;
    }
    .Scroll_up:hover {
        transform: translateY(-10px);
    }
}

@media (min-width: 992px) {
    .HeroText {
        margin-left: 0px;
        padding: 180px 0px 0px 0px;
    }
    .HeroText ul li {
        overflow: hidden;
        height: 100px;
    }
    .Hero ul li h1 {
        font-size: 100px;
        margin: 10px 0px 0px -6px;
    }
    .footer img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1250px) {
    .MenueDesktop {
        margin: 30px 0px 50px 0px;
    }
    .Container {
        margin: 0 220px 0 160px;
    }
    .HeroText {
        padding: 160px 0px 0px 0px;
    }
    .HeroText ul li {
        overflow: hidden;
        height: 110px;
    }
    .Hero ul li h1 {
        font-size: 110px;
        margin: 10px 0px 0px -8px;
    }
}

@media (min-width: 1600px) {
    .MenueDesktop {
        margin: 30px 0px 50px 0px;
    }
    .Container {
        margin: 0 450px;
    }
    .HeroText {
        padding: 240px 0px 0px 0px;
    }
}