* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.hero-image {
    background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/IMG_2906_16x9_2.jpg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
}




.hero-text {
    color: white;
    text-align: center;
    position: absolute;
    top: 79%;
    left: 40%;
    transform: translate(-70%, -70%);
    
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 50px;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.342);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-text a {
  transition: ease 0.3s;
  /* font-size: 1rem; */
}

.hero-text .border-btn {
  border: 1px solid rgba(255, 255, 255, 0.79);
  border-radius: 40px;
    padding: 20px 20px;
}

.border-btn:hover {
  background-color: rgba(255, 255, 255, 0.026);;
  color: #000000;
  text-decoration: none;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.342);
}

.hero-text a:hover {
    
    /* background-color: #555; */
    color: white;
    
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.533);
}

@media (max-width: 768px) {
    .hero-image {
        background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/portada_mariaguiraoWeb2_vertical.jpg');
        background-position: left;
        background-size: contain;
    }
    .hero-text h1 {
        font-size: 2.1rem;
         
    }
    .hero-text {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-text .border-btn {
        padding: 20px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/portada_mariaguiraoWeb2_vertical.jpg');
        background-position: right;
        background-size: cover;
        
    }
    .hero-text h1 {
        font-size: 2rem;
         
    }
    .hero-text {
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-text .border-btn {
        padding: 15px 15px;
        font-size: 0.8rem;
    }
}

