/* For responsiveness, inspired by Hugo Sainte-Marie https://ashugeo.com */

* {
    box-sizing: border-box
}

html {
    height: 100%;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #222224;
    color: #f0f0f0
}

main {
    position: relative;
    max-width: 950px;
    margin: 40px auto;
    padding: 32px 80px;
    z-index: 1;
}

.social + .social {
    margin-left: 15px;
}

.social{
    color:#FD5E0F;
    
}
.social:hover{
    color:#fff;
    transition: all 0.3s ease;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #FD5E0F;
  }
  
.hover-underline-animation::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #FD5E0F;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}

h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 1em;
    margin-top: 16px
}

h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 16px
}

.accent {
    color: #FD5E0F
}

.title {

    font-size: 22px;
    font-style: normal;
    font-weight: 400;

}

.studies{
    font-size: 20px;
    font-weight: 300;
}

span a {
    color: inherit
}

img {
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
    opacity: .70;
    user-select: none;
    pointer-events: none;
    z-index: -1;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    /*
    border-image: linear-gradient(45deg,rgb(79,158,155), rgb(102,66,140)) 1;
    */
}


p {
    color: #ffff;
    font-size: 18px;
    line-height: 1em
}

a {
    position: relative;
    color: white;
    text-decoration: none
}

/* Add your custom styles here */
.typed-cursor {
    opacity: 1;
    animation: blink .7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
  

@media screen and (max-width: 800px) {
    h1 {
        font-size: 80px;
        margin-top: 32px
    }

    img {
        width: 240px;
        right: 80px
    }
}

@media screen and (max-width: 600px) {
    main {
        padding: 32px
    }

    h1 {
        font-size: 48px;
        margin-top: 120px
    }

    h2 {
        font-size: 20px
    }

    .title {
        font-size:18px
    }

    .studies {
        font-size:18px
    }

    p {
        font-size: 14px
    }

    small {
        font-size: 12px
    }

    img {
        width: 200px;
        right: 50%;
        transform: translateX(50%)
    }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}