* {
    font-family: "Roboto", sans-serif;
}

.navbar .nav-item a, h1, h2 {
    font-size: 2rem;
    font-family: "Dancing Script", cursive;
}

#navbarNav .navbar-nav a {
  color: #959595;
  transition: .3s;
}
#navbarNav .navbar-nav a:hover {
  background-color: #fad9a1;
  color: #fff;
  border-radius: 15px;
  
}

.feature h2 {
   color: #f37878;
}

/* Botones */
.btna {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 25px;
    z-index: 0;
    background: #fff;
    overflow: hidden;
    border: 2px solid #fad9a1;
    color: #fad9a1;
  }
  .btna:hover {
    color: #fff;
  }
  .btna:hover:after {
    height: 100%;
  }
  
  .galeria img {
    border-radius: 25px;
  }
  
  .btna:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background: #fad9a1;
  }