/*
    Student Name: Yajiara Jarquin
    Date: 11/10/2025
    File Name: styles.css
*/
.hero{
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/baby-hawk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 100vh;
    padding-left: 5%;
}

}

.welcome {
    position: relative;
    color: #2a1f14;
}


.display-1 {
  font-size: 4em;
}

.bg-brown {
  background-color: #2a1f14;
}


/* Media Query for Tablet Viewport */
@media (min-width: 768px) { 
    
    .welcome {
        top: 20%;
        left: 5%;
        padding: 2em;
    }

}

/* Media Query for Desktop Viewport */
@media (min-width: 992px) { 
    
    .hero {
        background-position: left;
    }
    
    .display-1 {
        font-size: 8em;
    }
}