

:root {
    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-faded-black: #343434;
    --clr-grey: #F5F5F5;
    --clr-text-grey: #424242;
    --clr-pink: #FF5959;
    --clr-offtone-blue: #E9EDF3;
    --clr-blue: #1361FF;
    --ff-primary: 'Work Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--ff-primary);
    /* line-height: 1.5rem; */
    height: 100vh;
    background: var(--clr-white);
    font-size: 1.3125rem;  
    font-weight: normal;
    
    
}

.container {
    margin-inline: auto;
    width: min(95%, 70.5rem);
    display: block;
    line-height: 1.6;
    
}  

/* @media (max-width: 321px) {
    .container {
        padding-top: 0;
    }
    
}  */




/* ANIMATED TITLE */
.wrapper {
    display: flex;
    /* flex-direction: column; */
}
.wrapper .static-txt {
    display: flex;
    color: var(--clr-black);
    font-size: 60px;
    font-weight: 600;
    margin-left: 1rem;
    line-height: 90px;
    
}

.wrapper .dynamic-txt {
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    
}


.dynamic-txt li {
    
    list-style: none;
    color: var(--clr-pink);
    font-size: 60px;
    font-weight: 600;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
}

@keyframes slide {
    100% {
        top: -360px;
    }
}

@media (max-width: 691px) {
    .wrapper {
        flex-direction: column;
    }
    .dynamic-txt {
        margin-top: -1.2rem;
    }
    .creator-img img{
        width: 100%;
    }
}

.dynamic-txt li span {
    position: relative;
    margin: 5px 0;
    line-height: 80px;
}

.dynamic-txt li span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 110%;
    width: 100%;
    background: var(--clr-white);
    border-left: 2px solid #FF5959;
    animation: typing 3s steps(10) infinite;
}

@keyframes typing {
    40%, 60% {
        left: calc(100% + 30px);
    }

    100% {
        left: 0;
    }
}

lottie-player {
    
    margin: 0 auto;
}

.about-me {
    margin-top: 2rem;
}

.creator-img {
    margin-bottom: 1rem;
}

.creator-img img{
    width: 100%;
    margin-bottom: 1rem;
    
}

@media (min-width: 700px) {
    .creator-img img{
        max-width: 50%;
        
    }
    .creator-img {
        text-align: center;
        
    }
}

@media (max-width: 500px) {
    .wrapper .static-txt,
    .dynamic-txt li {
        font-size: 40px;
    }

    .dynamic-txt li span::after {
        height: 145%;
    }
}

.button a {
    text-decoration: none;
}.button {
    background: var(--clr-pink);
    padding: 0.7rem 1rem;
    text-decoration: none;
    font-weight: 400;
    color: var(--clr-white);
    
    margin-bottom: 5rem;    
    border-radius: 10px;
    cursor: pointer;
    
}

.button-border {
    border: 3px solid #FF5959;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 200;
    color: var(--clr-pink);
    margin-bottom: 5rem;    
    
    cursor: pointer;
    
}

.footer {
    margin-top: 10rem;
}

