#hero {   
    background-attachment: fixed;
    background-image: linear-gradient(rgba(58, 58, 58, 0.3), rgba(0,0,0, 0.5)), url(../../img/fondos/manos-planta.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    height: auto; 
    justify-content: center;
    padding: 60px 16px;
    text-align: center;
}

#hero h1 {
    color: white;
    font-size: 43px;
    margin-bottom: 15px;
}

#hero p {
    color: white;
    font-size: 20px;
    font-style: italic;
    padding: 0 5px;
    margin-top: 0;
    width: 100%;
}

#hero a {
    background-color:  #006967;
    border: 2px solid #006967;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    margin: 20px auto;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
    width: 200px;
}

#hero a:hover {
    background-color: #004e4d;
    border: 2px solid #004e4d;
}
