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

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/glacier/glacier.jpg");
    width: calc(100vw - 10px);
    height: 350px;
    background-size: cover;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    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 Hero Banner */

/* Main Content */
main {
    padding: 5px;
}
.contentArea {
    display: flex;
}

.contentArea div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contentArea div h4 {
    font-size: larger;
}

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

.contentArea img {
    width: 50vw;
    height: 50vh;
    object-fit: cover;
}

.imageViewer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
}

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

/* END Main Content */

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

footer img {
    height: 120px;
}


/* END Footer */

* {
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0px 2px 2px black;
}