<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1f2029; 
    color: #c4c3ca;
}


.warning {
    width: 100%;
    height: 25px;
    background-color: #6f598f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.warning p {
    color:#1f2029;
    font-weight: 700;
}


/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” Section Number â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.section_01 {
    padding-top: 25px;
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_number {
    position: absolute;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    z-index: 5;
}
.hero_number_last {
    position: absolute;
    margin-left: -90px;
    letter-spacing: 2px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #fefefe;
    z-index: 6;
}
.hero_number_next {
    position: absolute;
    margin-left: 90px;
    letter-spacing: 2px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #fefefe;
    z-index: 6;
}
.hero_number_line {
    position: relative;
    margin-top: 1px;
    width: 60px;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.75);
}


/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” Landingpage â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.section_landing {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_landing .header {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.section_landing .header p {
    margin-top: -100px;
    letter-spacing: 2px;
    font-size: 22px;
    font-weight: 700;
    padding: 0;
    color: #6f598f;
}
.section_landing .header h1 {
    margin: 0;
    padding: 0;
    font-size: 75px;
    letter-spacing: 6px;
    font-weight: 900;
    color: #fefefe;
    line-height: 1;
    text-transform: uppercase;
}
@media (max-width: 615px) {
    .section_landing .header h1 {
        font-size: 45px;
    }
}
.section_landing .header button {
    margin-top: 27.5px;
    width: 175px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background-color: #6f598f;
    color: #1f2029;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.125s;
}
.section_landing .header button:hover {
    box-shadow: 0px 0px 15px 0px #6f598f;
    transform: translateY(-2px);
}

.div_arrow {
    position: absolute;
    bottom: 27.5px;
    text-align: center;
    justify-content: center;
}
.arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid rgba(255, 255, 255, 0.2);
    transform: rotate(0deg);
    border-radius: 5px;
    cursor: pointer;
}
.arrow {
    animation: moveupanddown 1.1s linear infinite;
}
  @keyframes moveupanddown {
    0% {
      transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
    50% {
      transform: translateY(-10px);
    }
    80% {
        transform: translateY(-2px);
    }
    100% {
      transform: translateY(0);
    }
  }
  

/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” About Me â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.section_about {
    padding-top: 15px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}
.section_about .div_about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 90%;
}

/* .left â€” Bild */
.section_about .div_about .left {
    margin: 20px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_about .div_about .left img {
    height: 175px;
    width: 175;
    overflow: hidden;
    border-radius: 42% 56% 72% 28% / 42% 42% 56% 42%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    animation: blob 5s linear infinite;
    cursor: pointer;
    transition: 0.175s;
}
@keyframes blob {
    0%, 100% {
        border-radius:
            42% 56% 72% 28% / 42% 42% 56% 48%;
    }

    33% {
        border-radius:
            42% 28% 48% 48% / 28% 28% 72% 72%;
    }

    66% {
        border-radius:
            100% 56% 56% 100% / 100% 100% 56% 56%;
    }
}
.section_about .div_about .left img:hover {
    box-shadow: 0 0 25px 2.5px rgba(0, 0, 0, 0.25);
    border-color: #6f598f;
    transform: translateY(-3px);
}

/* .right â€” Text */
.section_about .div_about .right {
    margin: 20px;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_about .div_about .right .text {
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.section_about .div_about .right .text h1 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 900;
    color: #fefefe;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: -45px;
}
.section_about .div_about .right .text p {
    letter-spacing: 2px;
    font-size: 21px;
    font-weight: 700;
    color: #6f598f;
    margin-bottom: -15px;
}

@media (max-width: 768px) {
    .section_about {
        margin-bottom: 77.5px;
    }
    .section_about .div_about .left {
        margin-top: 30px;
        width: 100%;
    }
    .section_about .div_about .right {
        width: 100%;
    }
    .section_about .div_about .right .text h1 {
        margin-top: -10px;
        margin-bottom: 0;
    }
}


/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” My Projects â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.section_projects {
    padding-top: 2.25px;
    height: 100%;
    width: 100%;
}
.section_projects .header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_projects .header h1 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 900;
    color: #fefefe;
    line-height: 1;
    text-transform: uppercase;
}

/* cards */
.section_projects .div-projects {
    margin-top: -11px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
    margin-bottom: 100px;
}
.section_projects .div-projects .project {
    height: auto;
    width: 300px;
    position: relative;
    overflow: hidden;
    margin: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: solid;
    border-color: rgba(0, 0, 0, 0);
    border-width: 4px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.15s;
}
.section_projects .div-projects .project:hover {
    box-shadow: 0px 0px 15px 0px #6f598f;
    border-color: #6f598f;
    transform: translateY(-5px);
}
.section_projects .div-projects .project a {
    text-decoration: none;
}

.section_projects .div-projects .project .content {
    padding-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 45px;
}
.section_projects .div-projects .project .content .title {
    text-align: center;
    font-size: 25px;
    letter-spacing: 1.25px;
    font-weight: 800;
    color: #fefefe;
    line-height: 1;
    text-transform: uppercase;
}
.section_projects .div-projects .project .content .title:hover {
    text-decoration: underline;
}
.section_projects .div-projects .project .content .text {
    text-align: center;
    letter-spacing: 2px;
    font-size: 21px;
    font-weight: 700;
    color: #6f598f;
    margin-bottom: -15px;
}


/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” Socials â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.section_socials {
    padding-top: 2.25px;
    height: 100%;
    width: 100%;
    margin-bottom: 125px;
}
.section_socials .header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_socials .header h1 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 900;
    color: #fefefe;
    line-height: 1;
    text-transform: uppercase;
}

/* cards */
.section_socials .div-socials {
    margin-top: -11px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
    margin-bottom: 100px;
}
.section_socials .div-socials .social {
    height: auto;
    width: auto;
    position: relative;
    overflow: hidden;
    margin: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: solid;
    border-color: rgba(0, 0, 0, 0);
    border-width: 4px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.15s;
}
.section_socials .div-socials .social:hover {
    box-shadow: 0px 0px 15px 0px #6f598f;
    border-color: #6f598f;
    transform: translateY(-5px);
}
.section_socials .div-socials .social a {
    text-decoration: none;
}

.section_socials .div-socials .social .content {
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_socials .div-socials .social .content img {
    height: 60px;
    width: auto;
}
.section_socials .div-socials .social .content .title {
    text-align: center;
    font-size: 25px;
    letter-spacing: 1.25px;
    font-weight: 800;
    color: #6f598f;
    line-height: 1;
    margin-left: 12.5px;
}
.section_socials .div-socials .social .content .title:hover {
    text-decoration: underline;
}


/*â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” Footer â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”*/
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.footer a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.4);
    margin: 7.5px;
    font-size: 16.5px;
    font-weight: 700;
}
.footer a:hover {
    text-decoration: underline;
}</pre></body></html>