body {
    background: linear-gradient(to bottom, #E8DACD 0%, #9FA48E 100%);
}

body header img {
    float: right;
    width: 5%;
    height: 5%;
}

header {
    font-style: bold;
    /* background-color:  #E8DACD; */
    text-align: right;
}

  /* Navbar links */
nav {
    overflow: hidden;
    /* background-color: #E8DACD ; */
    text-align: right;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}
  
  /* Links - change color on hover */
nav a:hover {
    background-color: darkgreen;
    color: black;
}
nav a {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
nav ul li {
    display: inline;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.hero {
    height: 100vh; /* Full viewport height */
    background-image: url('..\images/background_heroimage_waterfall.png'); /* Replace with your image URL */
    background-size: 100%;
    background-position: wide;
    position: relative;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background:#E8DACD ; */
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content a button {
    float: center;
    color: bold black;
    border: 5px solid darkgreen;
    background-color: #76D4E5 ;

}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

column-1 {
    float: left;
    width: 30%;
    /* background-color: #E8DACD ; */
    padding: 10px;
}
  
column-2 {
    float: left;
    width: 30%;
    /* background-color: #E8DACD; */
    padding: 10px;
}
  
  /* Middle column */
column-3 {
    float: left;
    width: 30%;
    background-color: #E8DACD;
    padding: 10px;
}
img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}
footer {
    position:inherit;
    left: 0;
    bottom: 0;
    width: 100%;
    /* background-color:#9FA48E; */
    color:black;
    text-align: center;

}
footer h1 {
    font-size: medium;
    font-weight: bold;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    column.side, .column.middle {
    width: 100%;
    }
}

