@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
*{ margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Nunito";
}
:root{
    scroll-behavior: smooth;
}
body{
    width:100vw;
    background-color: #ECE6E0;
}
header{
    position: fixed;
    top:0; /* para que quede arriba pegado*/
    width: 100%;
    height: 90px;
    box-shadow: 0px 7px 9px -3px rgba(160, 160, 160, 0.75)  ;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color:#ECE6e0;
    z-index: 9999;
}
nav{
    width: 70%;
    height: 100%;
    background-color:#ECE6E0;
    display: flex;
    justify-content:center;
    align-items: center;
}
a{
    text-decoration: none;
    padding: 15px;
}

.padding{
    padding-right: 5px;
}
.start{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none; 
    font-size: 1.2em;
}

.button-1{ 
    width: 150px;
    height: 40px;
    background-color:rgb(153, 217, 140);
    border-radius: 20px;
    padding-right: 5px;
    display: flex;
    justify-content:center;
    align-items: center;
}
.font-white{
    color:white;
}
.font-color{
    color: #3F3D56;
}
.button-1:hover{
    background-color:rgb(181, 228, 140);
}
.button-2:hover{
    background-color:rgb(181, 228, 140);
}
.change:hover {
    color:rgb(181, 228, 140);
}
.button-ghost1:active{
    width: 80px;
    height: 40px;
    border: 1px solid rgb(153, 217, 140);
    box-shadow:-1px 0px 7px 0px rgb(153, 217, 140);
    border-radius: 20px;
    display: flex;
    justify-content:center;
    align-items: center;
    padding-right: 1%;
}
.button-ghost2:active{
    width: 200px;
    height: 40px;
    border: 1px solid rgb(153, 217, 140);
    box-shadow: -1px 0px 7px 0px rgb(153, 217, 140);
    border-radius: 20px;
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 10px;
}
.button-ghost3:active{
    width: 150px;
    height: 40px;
    border: 1px solid rgb(153, 217, 140);
    box-shadow: -1px 0px 7px 0px rgb(153, 217, 140);
    border-radius: 20px;
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 10px;
}

.presentation{
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-me{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2%;
}
.hello{
    color: #3F3D56;
    font-size: 2em;
}
.name{
    font-family: "Anton";
    font-size: 4em;
    color:#3F3D56;
}
.iMake{
    font-size: 1.5em;
}
.button-2{
    width: 200px;
    height: 50px;
    background-color: rgb(153, 217, 140);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;

}
.cover-page{
    width:600px;
    height:600px;
    filter: drop-shadow(2px 5px 20px #4c456d);
    transition-duration: 0.6s;
}
.cover-page:hover{
    transform: scale(1.2);
    transition-duration: 0.6s;
}