/*Paleta de colores */
@import 'colores.css';

html{
    margin: 0;
    padding: 0;                                                                                      
}

body{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    background-color: whitesmoke;       
}

header{
    padding: 1%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: var(--gradient-bottom-left);
    position: fixed;
    width: 100%;
    top:0;
    z-index: 1000;
    
}
#menu-hamburguesa{
    display: flex;
    cursor: pointer;
    font-size: 50px;
    color: var(--davys-gray);
}

#contenedor-foto{
    display: flex;
    flex-direction: row;
    padding:1%;
    justify-content: space-around;
}
#menu{
display: none;
flex-direction: column;
background-image: var(--gradient-bottom-left);
position:absolute;
top: 50px;
box-shadow: 1px 5px 10px var(--tropical-indigo);
border-radius: 5px;
z-index: 1000;
width:400px;
}
#menu a{
    color: #323131;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}
#menu a:hover{
    background-color: var(--jordy-blue-2);
    color:var(--orchid)
}
#menu.show{
    display: flex;
}
#foto{
    margin-top: 150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 0px 90px var(--lavender-floral);
}
#titulos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
}
#titulos h1{
    padding: 0px;
    margin: 0px;
    font-family: "Dancing Script", cursive;   
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color:var(--dim-gray);
}
#titulos h2{
    margin: 0px;
    padding: 0px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    color: var(--davys-gray-2);
}