:root {
    --farbe-black: #000000;
    --farbe-white: #ffffff;
    --farbe-cream: #fffcf3;
    --farbe-lilac: #d8a1fb;
    --farbe-green: #2ee187;
    --farbe-red: #e61c4f;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--farbe-cream);
    /* background-image: radial-gradient(circle, #e7e0cc 2px, transparent 2px);
    background-size: 110px 125px; */
}

.gradient-ball {
    position: fixed;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, #d8a1fb 0%, transparent 65%);
    filter: blur(60px);
    opacity: 0.7;
    pointer-events: none;
    z-index: -999;
    transform: translate(-50%, -50%);
    transition: left 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), top 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

h1 {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-size: 128px;
    letter-spacing: -2.5%;
    color: var(--farbe-black);
    text-align: center; 
    line-height: 95%;
}

h2 {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-size: 78px;
    letter-spacing: 1%;
    color: var(--farbe-black);
    margin-top: 80px;
    margin-bottom: 50px;
}

h2:hover {
    color: var(--farbe-lilac);
}

h3 {
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -2.5%;
    color: var(--farbe-lilac);
}

h4 {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    color: var(--farbe-black);
}

h5 {
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -2.5%;
    color: var(--farbe-lilac);
    margin-bottom: 16px;
}

p {
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: var(--farbe-black);
}

button {
    margin-top: 65px;
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 400;
    font-size: 23px;
    color: var(--farbe-black);
    background-color: transparent;
    border: solid 4px var(--farbe-black);
    padding: 16px 55px;
    cursor: pointer;
    transition: padding 0.3s ease, font-weight 0.3s ease;
    text-align: center;
}

button:hover {
    padding: 16px 70px;
    font-weight: 700;
}

button:active {
    color: var(--farbe-cream);
    background-color: var(--farbe-black);
    border: solid 4px var(--farbe-black);
}

/* Hero Section  */

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.subhead {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 22px;
    margin-top: 22px;
}

.subhead-line {
    border: none;
    border-top: 4px solid var(--farbe-black);
    width: 600px;
    margin: 0;
}

.hero-email {
    position: absolute;
    left: calc((100vw - 1380px) / 2);
    bottom: 10%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Overpass';
    font-weight: 300;
    font-size: 19px;
    color: var(--farbe-black);
    text-decoration: none;
}

.hero-email:hover {
    font-family: 'Overpass';
    font-weight: 300;
    font-size: 19px;
    text-decoration: none;
}

/* Scroll Down Indicator */

.scroll-indicator {
    position: absolute;
    right: calc((100vw - 1380px) / 2);
    bottom: 9%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.75rem;
}

.scroll-arrow {
    width: 100px;
    height: 85px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow img {
    width: 100%;
    height: 100%;
}

.scroll-text {
    font-family: 'Overpass';
    font-weight: 300;
    font-size: 19px;
    text-align: center;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}

/* Sections  */

main {
    flex: 1;
}

.section-area {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.section-subhead {
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    color: var(--farbe-black);
    padding-bottom: 48px;
    max-width: 630px;
    text-align: center;
}

.about-me,
.my-skills,
.portfolio,
.references {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-down-left-arrow {
    display: flex;
    justify-content: flex-end;
    max-width: 1440px;
    margin: 0 auto;
}

.scroll-down-right-arrow {
    display: flex;
    justify-content: flex-start;
    max-width: 1440px;
    margin: 0 auto;
}

.scroll-down-left-arrow img,
.scroll-down-right-arrow img {
    transition: transform 0.4s ease;
}

.scroll-down-left-arrow.moved img {
    transform: translate(-50px, 50px);
}

.scroll-down-right-arrow.moved img {
    transform: translate(50px, 50px);
}

.scroll-down-left-arrow:hover img {
    transform: translate(-50px, 50px);
}

.scroll-down-right-arrow:hover img {
    transform: translate(50px, 50px);
}