*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-purple: #1D0B1B;
    --secondary-purple: #da27c556;
    --primary-gray: #DCE1E9;
    --secondary-gray: #949DC7;
    --highlight-green: #DBFF36;
    --highlight-salmon: #F8938B;
    --lighter-salmon:#ffaea9;
}

html,body{ margin:0; padding:0; height:100%; width:100%;
    background-color: var(--primary-purple);
}


.section{
    min-height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;

    
    margin-bottom: 40px;
    
}

.main-container{
    overflow: hidden;

    flex-direction: column;
    justify-content: space-evenly;

    /*debugdisplay: none;*/

}



.frame{
    border-style: solid;
    border-color: var(--primary-gray);
    border-width: 2.5px;
    border-radius: 5px;
}

.main-frame{
    min-height: 150px;
    min-width: 320px;

    margin-bottom: 160px;
    padding: 12px 12px;

    border-style: solid;
    border-color: var(--primary-gray);
    border-width: 2.5px;
    border-radius: 5px;

}

h1,h2,h3{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

p{
    font-family: 'Roboto', sans-serif;
    font-weight: 100;    
}


.main-frame h1 {
    color:var(--highlight-salmon);
    margin: 0px 3px;
    font-size: calc(min(32px + 2vw, 70px));
    /*font-size: 35px;*/
}

.main-frame h2 {
    color:var(--primary-gray);
    margin: 8px 6px;
    /*font-size: 22px;*/

    font-size: calc(min(16px + 2vw, 52px));
    
}

.main-frame h3 {
    color:var(--secondary-gray);
    font-size: calc(min(14px + 1vw, 34px));
}

.main-frame .right{
    text-align: right;
    margin-top: calc(18px + 1vh);
}


.social-links i{
    color: var(--secondary-gray);
}

.social-links i:hover{    
    color: var(--primary-gray);
}



/*desktop*/
@media (min-width: 768px){
    .social-links{
        position: fixed;
        right: 0;
        display: flex;
        flex-direction: column;
        margin-right: 25px;
        height:300px;
        width: 60px;

        justify-content: space-between;
    }

    .social-links i{
        font-size: calc(min(50px + 1vw, 50px));
        display: inline-block;
        width: 55px;
        height: 50px;

    }


    .main-frame{
        margin-top: 5vh;
    }
}



/*mobile*/
@media (max-width: 768px){
    .social-links{
        width: auto;

        flex-direction: row;
        justify-content: flex-end;
        

    }

    .social-links i{
        font-size: 40px;
        margin: 0 4px;
    }

    .main-container{
        margin-top: 5vh;
        justify-content: flex-start;
    }

    .main-frame{
        margin-top: 20vh;
    }

    .scroll-call{
        margin-top: 30vh;
    }
}

.scroll-call{
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: calc(min(15px + 1vw, 28px));
    color: var(--highlight-green);

    position: absolute;
    top: 93%;
    margin: 0 auto;
}

.title-container{
    width: 53%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.content-frame{
    padding: 25px;
}
.content-frame p{
    font-size: calc(min(10px + 2vw,23px));
    color: var(--primary-gray);
    font-weight: 350;
}
.content-title{
    font-size: 40px;
    padding: 0 20px;
    text-align: center;
    background-color: var(--primary-purple);
    color: var(--highlight-green);
    position: absolute;
    margin-top: -30px;
    margin-left: 30px;
}



.about-me-footer{

    width: 100%;
    margin: 30px auto 20px auto;
    display: flex;
    justify-content: space-between;

}

.about-me-footer h3{
    font-size: calc(min(18px + 1vw,24px));
    font-weight: 200;
    color: var(--primary-gray)
}

.content-frame span{
    color: var(--highlight-salmon);

}

.list-container ul{
    font-family: 'Roboto', sans-serif;
    color: var(--primary-gray);
    font-weight: 350;
    list-style: none;
}

.list-container li{
    margin: 15px;
    width: 210px;
    height: 45px;
    padding: 6px;
    border-style: solid;
    border-color: var(--highlight-green);
    border-width: 2.5px;
    border-radius: 5px;


    
    font-size: calc(min(15px + 2vw,23px));
}

.image-container{
    margin-top: 15px;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture{
    margin-top: 10px;
    width: 200px;
    border-radius: 10px;
    border: 5px solid var(--secondary-purple);
}

.my-interest-section{
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: center;
}

.list-container{
    display: flex;
    margin-top: 15px;
    justify-content: space-around;
}




/*mobile*/
@media (max-width: 768px){
    .section{
        width: 100%;
    }

    .title-container{
        width: 100%; 
    }


    .frame{
        width: 100%;
        

        border-style: solid;
        border-color: var(--primary-gray);
        border-width: 2.5px;
        border-radius: 0px;

        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .about-me-footer{

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-picture{
        margin-top: 40px;
        margin-bottom: 60px;
        width: 300px;
    }

    .my-interest-section{
        width: 100%;
    }

    .list-container li{
        width: 300px;
    }


}





/*desktop*/
@media (min-width: 1200px){

    .title-container{
        width: 70%;
    }

    .about-me-footer{

        width: 100%;
        display: flex;
        align-content: center;
    
    }
    .my-interest-section{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .image-container{
        margin: 35px 0;
        width: 100%;
    }

    .profile-picture{
        width: 280px;
    }
}


/*desktop big*/
@media (min-width: 1500px){
    .section{
        margin-bottom: 0px;
    }
}



.timeline-container h3{
    color: #DBFF36;
    font-size: 26px;
}

.timeline-container span{
    color: var(--highlight-salmon);

}




.animated { 
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-iteration-count: 3;
    animation-delay: 2s;
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
 }
 
 @-webkit-keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-30px);} 
    60% {-webkit-transform: translateY(-15px);} 
 } 
 
 @keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-30px);} 
    60% {transform: translateY(-15px);} 
 }
 
 .bounce { 
    -webkit-animation-name: bounce; 
    animation-name: bounce; 
 }










/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background-color: var(--primary-purple);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--secondary-purple);
    border-radius: 8px;
}

