@keyframes shake {
    0% { 
        transform: rotate(5deg); 
    } 
  
    25% { 
        transform: rotate(-6deg); 
    } 
  
    50% { 
        transform: rotate(5deg); 
    } 
  
    75% { 
        transform: rotate(-6deg); 
    } 
  
    100% { 
        transform: rotate(5deg); 
    } 
}

html {
    scroll-behavior: smooth;
  }

h1{
    font-family: "filson-soft", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 90px;
    text-transform: uppercase;
    color: #F973A3;
}

h2{
    font-family: "filson-soft", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 60px;
    text-transform: uppercase;
    color: #F973A3;
}

h3{
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 400;
    color:#39061E;
}

h4{
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #EF4363;
}

p{
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 400;
    font-size: 15px;
    line-height: 25px;
}

nav{
    background-color: #FDE9EC;
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 600;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

nav ul{
    display: flex;
    padding: 20px 100px;
}

nav ul li a{
    text-decoration: none;
    color: #EF4363;
    font-size: 20px;
    padding: 25px;
    transition: 0.5s ease-in-out;
    scroll-behavior: smooth;
}

.nav_logo{
    max-width: 50px;
    height: auto;
    margin: 10px 100px 0px;
}

.nav_logo:hover{
    animation: shake 0.5s;
        animation-iteration-count: infinite;
      }

.landingpage {
    background-color: black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.landingpage_img {
    max-width: 100%;
    max-height: 80vh;
    position: relative;
    z-index: 1;
}

.landingpage_text{
    position: absolute;
    top: 60%;
    left: 10%;
    z-index: 2; 
    color: #FDE9EC;
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 400;
    font-size: 40px;
}

.landingpage_text p{
    padding-top: 15px;
}

.heart_icon{
    max-width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -85%);
    z-index: 1;
}

.fa-solid.fa.fa-arrow-down {
    position: absolute;
    top: 85%;
    left: 50%;
    z-index: 1;
    font-size: 60px;
    color: #FDE9EC;
}

.fa-solid.fa.fa-heart{
    color: #EF4363; margin: 2px;
}

.fa-solid.fa.fa-quote-left{
    color: #FFF5F5;
}

.fa-solid.fa.fa-quote-right{
color: #FFF5F5;
}

.work {
    background-size: 40px 40px;
    background-color: #39061E;
    background-image:
    linear-gradient(to right, #5B0D34 1px, transparent 1px),
    linear-gradient(to bottom, #5B0D34 1px, transparent 1px);
    padding: 75px 0px;
}

.work h2{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.work_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    margin-left: 200px;
    margin-top: 100px;
}

.work_detail {
    width: 50%;
    box-sizing: border-box;
}

.work_detail a{
    text-decoration: none;
    
}

.work_detail img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.work_detail h3 {
    margin: 30px 0px 30px 50px;
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #FFF9F5;
    text-align: center;
    text-transform: uppercase;
}


.about{
    background-color:#FFF9F5;
}

.about_me {
    background-color:#FFF9F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about_text {
    padding: 50px 0px 50px 200px;
    width: 480px;
}

.button_cv{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 600;
    color: #EF4363;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 60px;
    font-size: 20px;
    border: solid #EF4363 3px;
    background-color:#FFF9F5;
    margin-top: 70px;
    text-align: center;
    height: 45px;
    width: 330px;
}

.about h2{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.about_img{
    width: 50%;
    float:right
}

.about_img img{
    max-width: 500px;
    height: auto;
}

.skills{
    background-color: #FDE9EC;
    padding: 75px 0px;
}

.skills h2{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.skill_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    align-content: center;
    margin-left: 200px;
    padding-top: 50px;
}

.skill_detail h3{
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
}

.skill_detail img{
    height: 190px;
}

.skill_detail img:hover{
    animation: shake 0.5s;
        animation-iteration-count: infinite;
      }

.skill_detail span{
    display: inline-block;
    color: #EF4363;
    font-size: 24px;
    width: 18px;
}


.skills_marquee{
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    background-color: #39061E;
    color: #FDE9EC;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
}

.quote {
    background-color: #39061E;
    padding: 70px;
}

#quotes-container {
    display: flex;
    align-items: center;
}

.quote_details {
    width: 700px;
    margin-left: 100px;
}

#quoteImg{
    max-width: 400px;
    max-height: 400px;
}

p#quote_quote{
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 5px 0;
    color: #FFF5F5;
}

p#quote_author{
    font-family: "bc-novatica-cyr", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 5px 0;
    color: #FFF5F5;
    font-style: italic;
    margin-top: 60px;
}

.fa-solid.fa.fa-quote-left{
    font-size: 30px;
    margin-bottom: 30px;
}

.fa-solid.fa.fa-quote-right{
    font-size: 30px;
    margin-top: 30px;
    padding-left: 700px;
}

.fa-solid.fa.fa-star{
    padding: 20px;
}

#footer{
    background-color: #FDE9EC;
    padding-bottom: 75px;
}

#footer h2{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 75px 0px 50px;
}

.footer_outro{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.footer_info{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_detail{
    width: 500px;
}

.footer_detail p{
    padding-top: 25px;
}

.socials{
    display: flex;
    flex-direction: column;
    
}

.button_footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #EF4363;
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 600;
    border-radius: 60px;
    font-size: 20px;
    width: 330px;
    height: 50px;
    border: solid #EF4363 3px;
    background-color:#FDE9EC;
    font-size: 20px;
    margin: 10px 0px 10px;
}

.detail_page{
    margin: 50px 150px;
}

.detail_header{
    display: flex;
    width: 100%;
}

.detail_header_img img{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.detail_header_text{
    margin: 0px 50px;
}

.detail_header_text h1{
    margin-bottom: 30px;
}

.detail_img{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    margin-bottom: 50px;
}

.detail_img img{
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail_header_text p{
    width: 500px;
}

.detail_skill{
    display: flex;

}

.detail_skill p{
    background-color: #39061E;
    color: white;
    text-transform: uppercase;
    border-radius: 3cm;
    padding: 5px 20px;
    margin: 25px 15px 25px 0px;
}

.detail_button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #EF4363;
    font-family: "carbona-variable", sans-serif;
    font-variation-settings: "slnt" 0, "MONO" 100, "wght" 600;
    border-radius: 60px;
    font-size: 20px;
    width: 200px;
    height: 50px;
    border: solid #EF4363 3px;
    font-size: 20px;
    margin: auto;
}

