.bliss-filter{
    filter: darken(0.2);
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.5);
}

#main-title-Line1, #main-title-Line2, #main-title-Line3 {
    color: rgb(255, 255, 255);
    font-style: normal;   
    font-weight: 400;
    font-family:  "Rubik Lines", system-ui;
    font-style: thin;
    font-size: 5rem;
    margin: -1rem 0;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.bliss-hero {
    padding-left: 2rem;
    position: absolute;
    bottom:0;
    left:0;
}

.bliss-hero > h6 {
    margin-top: auto;
    font-family: "rubik Lines", system-ui;
    font-weight: 400;
    font-size: 1rem;
    padding-left: 0.3rem;
    margin-bottom: 0.2rem;
    color: #e9b934;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.74);
}

.walk {
    display: flex;
    font-size: 1.2rem;
    column-gap: 0.2rem;
    margin-left: 3rem;
    margin-bottom: 2rem;
    animation: slideIn 0.6s ease-in-out forwards;
    opacity: 0;
}

#walk1, #walk3{
    color: white;
}

#walk2 {
    color: #e9b934;
}

#walk4 {
    color: #34e94c;
}

@keyframes slideIn {
    from {
        transform: translateX(12%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@media screen and (max-width: 1023px) {
    #main-title-Line1, #main-title-Line2, #main-title-Line3 {
        font-size: 3rem;
        margin: -5px 0;
    }

    .hero > h6 {
        font-size: 0.8rem;
        margin: 0;
    }

    .walk {
        margin-left: 0.3rem;
        margin-bottom: 1rem;
    }  
}

@media screen and (max-width: 600px) {
    .hero {
        padding-left: 1.5rem;        
    }
    
    #main-title-Line1, #main-title-Line2, #main-title-Line3 {
        font-size: 1.8rem;
        margin: -3px 0;
    }

    .hero > h6 {
        font-size: 0.5rem;
        margin: 0;
    }

    .walk {
        font-size: 0.8rem;
        margin-left: 0.2rem;
        margin-bottom: 8rem;
    }
}
