* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

:root {
    --color-principal: #21493f;
    --color-secundario: #2e6e5e;
    --color-details: #a2dfcf;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    /* añadido para probar */
    height: 90vh;
    overflow: hidden;
}

.bg-image {
    background-image: url(/img/Fondo\ web\ compositor\ 3.png );
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background-size: cover;
    opacity: 35%;
    z-index: -1;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
    margin: 20px 0 10px 0;
    width: 100vw;
}

#logo-header {
    height: 55px;
    transition: all .3s ease-in-out;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
    display: inline-block;
    transition: all .3s ease-in-out;

}

#about{
    color: var(--color-principal);
    scale: 1.1; 
}

a:hover {
    color: var(--color-principal);
    scale: 1.05;
}


.body-about{
    height: 100%;
    display: flex;
    justify-self: center;
    justify-content: center;

}

.about-description{
    height: 100%;
    margin: 40px 120px 40px 0px;
    /* añadido para probar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -104px;
}

.personal-pic-content{
    margin: 40px;
    margin-left: 120px;
    /* añadido para prbar */
    display: flex;
    align-items: center;
    position: relative;
    top: -50px;
}

.personal-pic-content img{
    height: 380px;
   border-radius: 4px;
}

.about-description h3{
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.about-description p {
    text-align: justify;
    line-height: 18px;
}

.hamburguer-menu {
    display: none;
    justify-content: space-evenly;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .menu-options {
    display: none;
    /* background-color: #181818ef; */
    background-image: linear-gradient(#181818ef 75%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 200;
    justify-content: center;
    align-items: flex-start;
  
  
  }
  
  .aparecer {
    animation: menu-anim 1s ease-in-out 0s 1 normal forwards;
  }
  
  .desaparecer {
    animation: menu-anim-close 1s ease-in-out 0s 1 normal forwards;
  }
  
  .menu-options i {
    position: absolute;
    top: 0;
    right: 0;
    margin: 30px;
  
  }
  
  #close-icon {
    font-size: 43px;
    color: var(--color-details);
    cursor: pointer;
  }
  
  
  .menu-options ul {
  
    position: relative;
    top: 19%;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .menu-options ul li a {
    color: var(--color-details);
    font-size: 26px;
    margin: 17px;
    
  }
  
  .menu-options ul li a:hover {
    color: #e4e4e4;
  }
  
  .icon-menu {
    height: 34px;
    display: flex;
    align-items: center;
  
  }
  
  .icon-menu i {
    font-size: 37px;
    cursor: pointer;
    z-index: 200;
  }
  



footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 54px;
    margin-bottom: 12px;
  }
  
  .footer-content {
  
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 80%;
    position: relative;
    right: 10px;
  }
  
  .footer-content div {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
  }
  
  .footer-content div img {
    width: 25px;
    margin: 0 20px;
  }
  
  .instagram,
  .email {
    display: flex;
    align-items: flex-end;
    transition: all .3s ease-in-out;
  }
  
  

/* #logo-header:hover {
    scale: 1.05;
    cursor: pointer;
} */


/* @keyframes animation-logo {
    0% {
        opacity: 0;
        transform: rotateX(70deg);
        transform-origin: top;
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
        transform-origin: top;
    }
} */

@keyframes animation-body {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menu-anim {
    0% {
      opacity: 0;
      transform: rotateX(-100deg);
      transform-origin: top;
    }
  
    100% {
      opacity: 1;
      transform: rotateX(0deg);
      transform-origin: top;
    }
  }
  
  @keyframes menu-anim-close {
    0% {
      opacity: 1;
      transform: rotateX(0deg);
      transform-origin: top;
    }
  
    100% {
      opacity: 0;
      transform: rotateX(-100deg);
      transform-origin: top;
    }
  }