body{
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #2e7d32, #81c784);
    height: 100vh;
}
/* Header */
header{
    display: flex;
    align-items: center;
    gap: 35%;
}
header img {
    height: 120px;

}
header h3{
    font-size: 2.0em;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
}
/* END header */

/* Hero Banner */
.hero{
    background-image: url(../../assets/images/YellowStone/pexels-veronika-bykovich-144474426-12217842.jpg);
    width: calc(100vw - 10px);
    height: 340px;
    background-size: cover;
    backdrop-filter: blur(8px) brightness(0.4s);
    position: relative;
}
.hero p{
    max-width: 30vw;
    text-align: end;
    margin: 30px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0px 2px 2px black;
    z-index: 1;



}
#overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter:blur(4px);
    
}


/* END banner */
/* main content */
.contentArea{
    display: flex;

}
.reverse{
flex-direction: row-reverse;

}
.contentArea div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contentArea img{
    height: 50vh;
    width: 50vw;
}
.imageViewer{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;

}
.imageViewer img{
    flex: 1;
    height: 250px;
    object-fit: cover;

}

/* main content */
.text{
     color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}


/* maon content */
/* footer */
footer{
    display: flex;
    height: 100px;
    border: 1px solid black;
    justify-content: space-between;
    padding: 20px;
}

footer img{
    height: 120px;
}

/* footer */