@font-face {
    font-family: Acorn;
    src: url(fonts/Acorn-Medium.ttf);
}

html {
    scroll-snap-type: y mandatory;
}


body {
    height: 100%;   
    width: 100%;
    background-color: #111111;
    color: #F9F9F9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    box-sizing: border-box;

}

/*------- SOFT/SNAP SCROLL --------*/

.section--aboutMe, .section--contactMe, .section--main, .section--stack, .section--title{
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* TOGGLE MENU */

header {
    
    min-height: 40px;
    height: 4dvw;
    width: 100%;
    border: 3vw;
    display: flex;
    color: #E42278;
    background-color: #111111;
    position: sticky;
    top: 0;

    justify-content: center;
    align-items: center;
    
}

#nameHeader {
    color: #E42278;
    font-family: Acorn;
    font-size: clamp(16px, 3vw, 24px);
    padding: 5dvw;
}

#toggleMenu {

    display: flex;
    margin-left: auto;
    padding: 5dvw;

    
    flex-direction: row;
    justify-content: center;
    align-items: center;


}

i {
    margin-left: auto;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.5rem;
}

/*---- MAIN ----*/


section {
    min-height: 100dvh;
    height: auto;
    text-align: center;
    margin: 20vw 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



h1 {
    font-family: Acorn;
    text-transform: uppercase;
    color: #E42278;
    font-size: 8vw;
    margin: 0;
    transition: font-size 2s;


}

h1:hover{
    font-size: 10vw;
}


.main--description{
    font-size: 3vw;
    color: #E42278;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;

}

.main--description{
    margin-bottom: 5vw;
}


.main--button {
    background-color: #E42278;
    color: #F9F9F9;
    text-transform: uppercase;
    padding: 2VW;
    font-family: Acorn;
    font-size: 2vw;
    border-radius: 20px;
    text-decoration-line: none;
}

/*---- ABOUT ME ----*/


.section--title {
    text-transform: uppercase;
    font-family: Acorn;
    font-size: 9vw;
    color: #E42278;
    transition: font-size 1s;
    margin: 0;

}

.section--title:hover {
    font-size: 10.5vw;
}

.aboutMe--container {
    display: inline-flex;
}

.aboutMe--description--container {
    width: 65vw;
    height: auto;
    text-align: left;
}
.aboutMe--firstContainer {
    display: flex;
    align-items: center;

}


.aboutMe--description1 {
    font-family: Acorn;
    font-size: clamp(18px, 3vw, 40px); 
    padding-right: 2vw;
}



.aboutMe--description2 {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
}



.description--degree {
    font-weight: 600;
}

.description--interest {
    font-weight: 600;
    font-style:italic;
}

.aboutMe--photo {
    margin: 2vw;
    margin-left: 2.1vw;

    min-width: 125px;
    min-height: 125px;


    border-top-left-radius: 50%;
    border-top-right-radius: 50%;

    transition: box-shadow 0.5s;

}

.aboutMe--photo:hover{
    box-shadow: 0 0 30px #E42278;
}


/*---- STACK ----*/


.stack--languages, .stack--tools, .stack--learning{
    text-transform: uppercase;
    margin-left: 10vw;
    margin-right: 10vw;
    

}

.stack--list{
    padding: 0;
    display:flex;
    flex-wrap: wrap; 
    justify-content: center;
    
}

.stack--listed, .contactMe--list{
    padding: 1vh;
    margin-top: 2vw;
    list-style-type: none;
}

.stack--icon {
    width: 8vh;
    margin-left: 2vw;
    margin-right: 2vw;

}

.stack--icon:hover {
    filter: drop-shadow(0 0 10px #F9F9F988);
    transition: 0.3s ease;


}


/*----- CONTACTAME -----*/


.contactMe--list {
    display: flex;
    justify-content: center;
    margin: auto;
    background-color: #E42278;
    border-radius: 20px;

}

.socialMedia--listed {
    margin: auto;

}