* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #f1f6f9;
    --secondary-color: #394867;
    --dark-color: #212a3e;
    --gray-color: #9ba4b5;
    --dirt-white: #ece7e1;
}

::-webkit-scrollbar {
    display: none;
}

.resize-animation-stopper * {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: white;
    visibility: visible;
    transition: 0.3s ease;
}

.hide-preloader {
    visibility: hidden;
    z-index: -999;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    z-index: 100;
}

header video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

nav {
    width: 100%;
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 999;
}

.credits-top {
    display: flex;
    justify-self: center;
    align-items: center;
}

.credits-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.credits-top a span {
    font-size: 18px;
    padding: 0 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-links li {
    text-align: center;
}

.nav-links li a {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.home-link {
    visibility: hidden;
}

.burger {
    display: none;
}

.center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 25px;
}

.center .logo {
    color: var(--primary-color);
    width: clamp(8rem, 17vw, 22rem);
    margin: 0 0 0 8vw;
    z-index: -1;
}

.center .logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.center .role {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 5vw;
    position: relative;
}

.role span {
    width: fit-content;
    position: absolute;
    top: -40px;
    left: 0;
    margin: 0 auto;
    padding: 3px;
    transform: scale(1.5vw);
}

.role h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2rem;
}

.bigname-btm {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.sliding-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sliding-text h1 {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    white-space: nowrap;
    color: var(--primary-color);
    font-size: 10rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-align: center;
    animation: sliding 10s linear infinite;
}

.sliding-text #slide1 {
    padding-left: 0%;
}

.sliding-text #slide2 {
    padding-left: 100%;
}

@keyframes sliding {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.img-container {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.SLGN {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    padding: 0 80px;
    position: relative;
}

/* #ED2B2A - palette */

span {
    color: #ed2b2a;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99;
}

.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-side a,
.right-side a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding: 2px;
    transition: transform 0.3s ease;
}

.left-side a svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.left-side a svg:hover {
    stroke: var(--dark-color);
    transform: translateY(-3px);
}

.left-side {
    position: fixed;
    left: 1.5rem;
    bottom: 0;
    gap: 18px;
}

.right-side a {
    writing-mode: vertical-rl;
    position: absolute;
    bottom: 7.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.right-side a:hover {
    color: var(--dark-color);

    transform: translateY(-3px);
}

.right-side {
    position: fixed;
    right: 1.5rem;
    bottom: 0;
    width: 18px;
}

.left-side::after {
    content: "";
    width: 1px;
    height: 6rem;
    background: var(--secondary-color);
}

.right-side::after {
    content: "";
    width: 1px;
    height: 6rem;
    background: var(--secondary-color);
}

.slogan-container {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slogan h1 {
    font-family: "Audiowide", sans-serif;
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    line-height: 80px;
    white-space: nowrap;
    font-weight: 900;
}

.slogan h1 span {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}

.greetings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}

.greetings h1 {
    font-size: clamp(1.2rem, 2.5vw, 4rem);
    font-weight: 900;
}

.greetings h3 {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 35px;
    white-space: nowrap;
}

.arrow-container {
    width: 25px;
    /* cubic-bezier-easing = sine / mehr Beispiele: https://easings.net/ */
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    height: 20px;
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.arrow-down {
    height: 6px;
    background: black;
    transform: rotate(45deg);
    transform-origin: 0% 0%;
    border-radius: 5px;
}

.arrow-down:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 100%;
    border-radius: 5px;
    background: black;
    transform: rotate(-90deg);
    transform-origin: 0% 100%;
}

@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}

.about {
    width: 100%;
    height: auto;
    background: var(--primary-color);
    padding: 2rem 7vw;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--dark-color);
}

.about-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.about-header h1,
.about-header h1 span {
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-style: italic;
    font-weight: 900;
    color: var(--dark-color);
}

.about-header h1 span {
    color: var(--secondary-color);
}

.about-header::before {
    content: "";
    width: 10rem;
    height: 1px;
    background: var(--dark-color);
    position: absolute;
    top: 50%;
    left: -10rem;
}

.about-header::after {
    content: "";
    width: 100rem;
    height: 1px;
    background: var(--dark-color);
    position: absolute;
    top: 50%;
    left: clamp(7rem, 17vw, 12rem);
}

.about-me {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.intro {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    grid-column: span 2;
    padding: 0 20px;
}

.intro h1,
h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 3rem);
    color: var(--dark-color);
    white-space: nowrap;
    line-height: 50px;
}

.about-me .desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.about-btn {
    display: flex;
    justify-content: center;
    width: auto;
    margin-top: 20px;
    padding: 15px;
    border-radius: 30px;
    color: var(--dirt-white);
    background: var(--dark-color);
    text-align: center;
    font-size: clamp(12px, 2vw, 1rem);
}

.desc p {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    line-height: 30px;
}

.mepic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.mepic .container {
    width: 100%;
    height: 80%;
}

.mepic .container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
}

.navbar {
    position: fixed;
    inset: 0 0 0 50%;
    z-index: 1000;
    padding: min(30vh, 10rem) 1.5rem;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    flex-wrap: nowrap;

    background: rgba(0, 0, 0, 0.5);
    margin-top: -60px;
    gap: 2.5rem;
    backdrop-filter: blur(1rem);
    transform: translateX(100%);
    transition: transform 350ms ease-out;
}

.navbar li a {
    font-size: clamp(1.5rem, 10vw, 4rem);
    line-height: 80px;
    font-weight: 600;
}

.navbar li a::after {
    content: "·";
    font-size: 4rem;
    position: absolute;
    right: 0;
    transform: translateX(1.5rem);
    transition: transform 250ms ease-out;
}

.navbar li a:hover::after {
    transform: translateX(-2.5rem);
}

.navbar[data-visible="true"] {
    transform: translateX(0%);
}

.burgermenu {
    display: flex;
    position: fixed;
    z-index: 9999;
    border: 0;
    width: 2.5rem;
    aspect-ratio: 1;
    top: 1rem;
    right: 1.5rem;
    font-size: 0;
    cursor: pointer;
    border-radius: 50%;
    padding: 0 5px;
    background: var(--dark-color);
    transform: scale(1.1);
    animation: appear 0.5s;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

svg {
    height: 40px;
    aspect-ratio: 1;
}

.line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}


.works {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;
    background: var(--primary-color);
    position: relative;
}

.header-container {
    width: 100%;
    text-align: center;
    top: 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header-container h1 {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.header-container h3 {
    font-size: 1.05rem;
    line-height: 25px;
    letter-spacing: 0.5px;
}

.project-container {
    margin: 80px 0 0 0;
    width: 100%;
    height: auto;
    text-align: right;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    gap: 8rem;
}

.project {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.5s ease-out;
}

.p-img {
    display: flex;
    justify-content: center;
    width: 78vw;
    height: 100%;
    border-radius: 5px;
}

.p-img a {
    width: 100%;
    height: 100%;
}

.p-img a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.p-img img:hover~.project {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.p-content {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3% px;
}

.p-content>div {
    display: flex;
    flex-direction: column;
}

.p-content>div span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.p-content>div a {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.p-content .p-desc {
    display: flex;
    justify-content: center;
    padding: 20px 0 20px 30px;
}

.p-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--dark-color);
}

.p-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.p-links a svg {
    stroke: var(--dark-color);
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-out;
}

.p-links a svg:hover {
    stroke: black;
    transform: translateY(-3px);
}

.pj-reverse {
    flex-direction: row-reverse;
    text-align: left;
}

.pj-reverse .p-content .p-desc {
    padding: 20px 20px 20px 0;
}

.pj-reverse .p-links {
    justify-content: flex-start;
}


.c-contacts {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--primary-color);
    padding: 0 20%;
}

.c-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.c-container h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: -30px 0 15px 0;
    color: var(--dark-color);
    white-space: nowrap;
    letter-spacing: 1px;
}

.c-container p {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    margin: 5px 0 10px 0;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-align: center;
}


.c-container a {
    font-size: 18px;
    padding: 1rem 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    margin-top: 20px;
    border-radius: 5px;
    background: var(--primary-color);
    z-index: 2;
    box-shadow: 0 3px rgba(0, 0, 0, 0.9);
    transition: 0.4s ease;
}

.c-container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px rgba(0, 0, 0, 0.9);
}

.c-container a:active {
    transform: translateY(0);
    box-shadow: 0 5px rgba(0, 0, 0, 0.9);
    transition: 0.2s;
}

footer {
    width: 100%;
    height: 20vh;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 3px #ccc;
    background: #DBDFEA;
    box-shadow: inset 0px 3px 3px -3px rgba(50, 50, 50, 0.75);
}

footer .details {
    width: 80%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.details span {
    font-size: 1rem;
    color: var(--secondary-color);
}

.details ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.details ul a {
    font-size: 1rem;
    color: var(--secondary-color);
}

.bt-top {
    width: 120px;
    height: 80px;
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
    background: #DBDFEA;
    box-shadow: inset 0px 3px 3px -3px rgba(50, 50, 50, 0.75);
    transition: 0.3s ease;
    padding: 15px;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.bt-top svg {
    transform: scale(2.7);
    fill: var(--dark-color);
}

.bt-top:hover {
    transform: translateY(-3px);
}

@media only screen and (max-width: 1024px) {

    .intro h1,
    h2 {
        font-size: 40px;
    }

    .mepic {
        padding: 0;
    }

    .mepic .container {
        width: 100%;
        height: 60%;
    }

    .slogan h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
        line-height: 60px;
    }

    .greetings h3 {
        font-size: 14px;
        line-height: 30px;
        white-space: nowrap;
    }



}

@media only screen and (max-width: 768px) {

    .center .logo {
        width: 200px;
        margin: 0 0 0 1rem;
    }

    .center .role {
        margin-right: 5vw;
    }

    .center .role h3 {
        font-size: 1.5rem;
    }

    .c-contacts {
        padding: 0 15%;
    }

    .c-container h1 {
        font-size: 3rem;
        margin: -40px 0 15px 0;
    }

    .c-container p {
        font-size: 16px;
    }

    .c-container a {
        font-size: 16px;
    }

    .img-container {
        width: 70%;
    }

    .works {
        padding: 50px 50px;
    }

    .project-container {
        margin: 50px 0 0 0;
    }

    .project {
        flex-direction: column;
    }

    .p-img {
        width: 100%;

    }

    .p-content {
        width: 100%;
        align-items: flex-start;
        text-align: start;
    }

    .p-content .p-desc {
        text-align: start;
        padding: 20px 20px 20px 0;
    }

    .slogan-container {
        flex-direction: column;
        gap: 20px;
    }

    .slogan {
        align-items: center;
    }

    .slogan h1 {
        font-size: 3rem;
        line-height: 60px;
    }

    .intro h1,
    h2 {
        font-size: clamp(1.7rem, 5vw, 2.5rem);
        line-height: 35px;
    }

    .greetings {
        white-space: nowrap;
        text-align: center;
        align-items: center;
    }

    .greetings h1 {
        font-size: 1.5rem;
    }

    .greetings h3 {
        font-size: clamp(14px, 2.5vw, 16px);
    }

    .about-me {
        display: flex;
        flex-direction: column;
    }

    .mepic .container {
        height: 25rem;
    }

    .left-side {
        left: 1rem;
        gap: 17px;
    }

    .right-side {
        right: 1rem;
    }

    .left-side a,
    .right-side a {
        font-size: 0.7rem;
        padding: 0;
    }

    .right-side a {
        bottom: 6rem;
    }

    .left-side a svg {
        width: 18px;
        height: 18px;
    }

    .left-side::after,
    .right-side::after {
        height: 5rem;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 0%;
        z-index: 1000;
        padding: min(30vh, 10rem) 1.5rem;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        flex-wrap: nowrap;

        background: rgba(0, 0, 0, 0.5);
        margin-top: -60px;
        gap: 2rem;
        backdrop-filter: blur(1rem);
        transition: transform 350ms ease-out;
        transform: translateX(100%);
    }

    .nav-links li a {
        font-size: clamp(4rem, 15vw, 4.5rem);
        line-height: 80px;
        font-weight: 600;
    }

    .nav-links[data-visible="true"] {
        transform: translateX(0%);
    }

    .nav-links li a::after {
        content: "·";
        font-size: 4rem;
        position: absolute;
        right: 0;
        transform: translateX(1.5rem);
        transition: transform 250ms ease-out;
    }

    .nav-links li a:hover::after {
        transform: translateX(-2.5rem);
    }

    .burger {
        display: flex;
        position: fixed;
        z-index: 9999;
        border: 0;
        width: 2.5rem;
        aspect-ratio: 1;
        top: 1rem;
        right: 1.5rem;
        font-size: 0;
        cursor: pointer;
        border-radius: 50%;
        padding: 0 5px;
        background: var(--dark-color);
        transform: scale(1.1);
    }

    svg {
        height: 40px;
        aspect-ratio: 1;
    }

    .line {
        fill: none;
        stroke: var(--primary-color);
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }

    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }

    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }

    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
}

@media only screen and (max-width: 720px) {

    footer .details {
        justify-content: center;
    }

    .details ul {
        display: none;
    }

    nav {
        padding: 0 2rem;
    }

    header {
        overflow: hidden;
    }

    .center {
        position: static;
    }

    .center .logo {
        position: absolute;
        top: 0.2rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: scale(1.5);
        width: 200px;
    }

    .center .role {
        position: relative;
        top: 6rem;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .role h3 {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .bigname-btm {
        z-index: 100;
    }

    .sliding-text h1 {
        font-size: 8rem;
    }

}

@media only screen and (max-width: 425px) {

    .c-contacts {
        padding: 0 10%;
    }

    .c-container h1 {
        font-size: clamp(2.5rem, 10vw, 3rem);
        margin: -50px 0 15px 0;
    }

    .c-container p {
        font-size: 14px;
    }

    nav {
        padding: 0 1.5rem;
    }

    .img-container {
        width: 100%;
    }

    .left-side {
        left: 0.8rem;
        gap: 15px;
    }

    .right-side {
        right: 0.8rem;
    }

    .left-side a,
    .right-side a {
        font-size: 0.6rem;
        padding: 0;
    }

    .right-side a {
        bottom: 4rem;
    }

    .left-side a svg {
        width: 18px;
        height: 16px;
    }

    .left-side::after,
    .right-side::after {
        height: 3rem;
    }

    .mepic .container {
        width: 90%;
        height: 20rem;
    }

    .slogan h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 50px;
    }

    .SLGN {
        padding: 0 25px;
    }

    .greetings h3 {
        font-size: 12px;
        white-space: normal;

    }

    .arrow-container {
        bottom: 1.5rem;
    }

    .intro {
        padding: 0;
    }

    .intro h1,
    h2 {
        font-size: clamp(1.3rem, 5.7vw, 25px);
        line-height: 25px;
        padding: 0;
        margin: 0;
    }

    .desc p {
        font-size: 12px;
    }

    .about-me .desc {
        padding: 0 13px;
    }


}