* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: white;
}

#home-titel {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
}

#home-titel:hover {
    color: transparent;
    -webkit-text-stroke: 3px black;
    border-color: black;
}

@keyframes typing {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}

#typed-word {
    overflow: hidden;
    border-right: 0.15em solid orange;
    white-space: nowrap;
    margin: 0px;
    animation: 3s steps(10) 0s 1 normal none running typing, 0.75s step-end 0s infinite normal none running blink-caret;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

@keyframes blink-caret {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: orange;
    }
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    transition: background-color 0.3s ease 0s;
}

.header::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
}

#logo {
    width: 72px;
}

.navbar a {
    font-size: 1.15rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    font-family: Poppins, sans-serif;
}

.header.scrolled .navbar a {
    color: rgb(9, 82, 133);
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: none;
    transition: color 0.3s ease 0s;
}

.header.scrolled .icons {
    color: rgb(9, 82, 133);
}

.bx-x::before {
    content: "î²";
    color: black;
}

.bx-menu::before {
    content: "î­Ÿ";
    color: black;
}

.navbar a:nth-child(5) {
    background-color: #1abc9c;
    border-radius: 49px;
    padding: 8px 17px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease 0s;
}

.navbar a:nth-child(5):hover {
    border: 2px solid rgb(140, 196, 171);
    background-color: transparent;
    color: rgb(140, 196, 171);
}

@media (max-width: 992px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 768px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0px;
        height: 0px;
        width: 100%;
        backdrop-filter: blur(50px);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0.5rem 1rem;
        overflow: hidden;
        transition: all 0.3s ease 0s;
    }

    #check:checked~.navbar {
        height: 34rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0px;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: all 0.3s ease 0s;
    }

    #check:checked~.navbar a {
        transform: translateY(0px);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
        font-size: 21px;
        margin-bottom: 67px;
        margin-top: 66px;
    }
}

.home {
    height: 100vh;
    background-image: url("Images/wit.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 0px 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: 99px;
    font-weight: 700;
    line-height: 1.2;
    font-family: montserrat;
    color: black;
}

.home-content h3 {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #1abc9c;
}

.home-content p {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 20px 0px 40px;
    color: black;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.btn-box a {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    position: relative;
    display: inline-flex;
    width: 150px;
    height: 100%;
    background: #1abc9c;
    border-radius: 8px;
    font-size: 19px;
    text-decoration: none;
    letter-spacing: 1px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease 0s;
}

#home-button:hover {
    border: 2px solid rgb(140, 196, 171);
    background-color: transparent;
    color: rgb(140, 196, 171);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: 2s ease 0s infinite normal none running bounce;
}

.about-me h1 {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    display: flex;
    margin-top: -100px;
    transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
}

.about-me h1:hover {
    color: transparent;
    -webkit-text-stroke: 3px black;
    border-color: black;
}

.text-underline {
    background-image: linear-gradient(100deg, rgb(140, 196, 171) 0%, rgb(102, 233, 254) 100%);
    background-repeat: no-repeat;
    background-size: 82% 0.15em;
    background-position: 0px 78%;
}

.about-content p {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 20px 0px 40px;
    color: black;
}

.about-content h3 {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #1abc9c;
}

.about-content {
    max-width: 600px;
}

.about-me {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0px 10%;
    background-color: #fafafa;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
}

#img-jimmy {
    width: 544px;
    margin-top: 129px;
}

.tools-skills {
    background-color: rgb(255, 255, 255);
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.tools {
    margin-bottom: 50px;
}

.tools,
.skills {
    flex: 1 1 0%;
    margin-right: 20px;
}

.tools h2 {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 44px;
    display: flex;
    color: black;
    justify-content: center;
    transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
}

.tools h2:hover {
    color: transparent;
    -webkit-text-stroke: 3px black;
    border-color: black;
}

.tool-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.tool-icons img {
    width: 86px;
}

.skill {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
}

.skill p {
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
}

.skill-bar {
    background-color: rgb(221, 221, 221);
    height: 10px;
    border-radius: 5px;
    position: relative;
}

.skill-level {
    height: 100%;
    background-color: #1abc9c;
    border-radius: 5px;
}

.skill-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    justify-content: center;
}

.single-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-tool h3 {
    margin-top: 5px;
    color: black;
}

.titel-content {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    margin-left: 7%;
}

.titel-filled {
    font-size: 50px;
}

.titel-outline {
    font-size: 30px;
}

@media only screen and (max-width: 845px) {
    .tool-icons {
        display: grid;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 59px;
        gap: 40px;
    }

    .skill-slider {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 20px;
        justify-content: center;
    }
}

@media only screen and (max-width: 870px) {
    #home-titel {
        font-family: Poppins, sans-serif;
        font-weight: 400;
        font-style: normal;
        transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
    }

    .home-content h1 {
        font-size: 75px;
        font-weight: 700;
        line-height: 1.2;
        font-family: montserrat;
        color: black;
    }
}

@media only screen and (max-width: 650px) {
    #home-titel {
        font-family: Poppins, sans-serif;
        font-weight: 400;
        font-style: normal;
        transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
    }

    .home-content h1 {
        font-size: 55px;
        font-weight: 700;
        line-height: 1.2;
        font-family: montserrat;
        color: black;
    }
}

@media only screen and (max-width: 470px) {
    #home-titel {
        font-family: Poppins, sans-serif;
        font-weight: 400;
        font-style: normal;
        transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
    }

    .home-content h1 {
        font-size: 45px;
        font-weight: 700;
        line-height: 1.2;
        font-family: montserrat;
        color: black;
    }
}

@media only screen and (max-width: 750px) {
    .about-me h1 {
        font-family: Poppins, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 80px;
        display: flex;
        margin-top: -100px;
        transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
    }
}

@media only screen and (max-width: 530px) {
    .about-me h1 {
        font-family: Poppins, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 60px;
        display: flex;
        margin-top: -100px;
        transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
    }
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding: 2rem; */
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form {
    width: 100%;
    max-width: 100vw;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #1abc9c;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    /* left: -13px; */
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
    /* width: 428px; */
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 344px;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.contact-info .title {
    color: #1abc9c;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.fa-map-marker-alt:before {
    content: "\f3c5";
    margin-right: 20px;
}

.fa-envelope:before {
    content: "\f0e0";
    margin-right: 17px;
}

.fa-phone:before {
    content: "\f095";
    margin-right: 17px;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1abc9c, #149279);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .input {
        width: 327px;
        outline: none;
        border: 2px solid #fafafa;
        background: none;
        padding: 0.6rem 1.2rem;
        color: #fff;
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        border-radius: 25px;
        transition: 0.3s;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        /* padding: 1.5rem; */
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 1rem;
    }

    .title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
    }

    .contact-form {
        background-color: #1abc9c;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}