body {
    background-color:  #E8DACD ;
}

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: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: x-large;
    font-stretch: expanded;
}

h1 {
    font-size: xx-large;
    font-weight: bold;
    text-align: center;
    font-style: italic;

}
h2 {
    font-size: x-large;
    font-weight: bolder;
    text-align: center;
    font-style: normal;
}

h3 {
    font-size: large;
    font-weight: lighter;
    text-align: center;
    font-style: normal;
}
h4 {
    font-size: large;
    font-weight: lighter;
    text-align: center;
    font-style: normal;
}
  /* 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;
}

column-1 {
    float: left;
    width: 30%;
    background-color: #E8DACD ;
    padding-left: 70px;
}
column-1 img {
    width: 100%;

}
  
column-2 {
    float: left;
    width: 30%;
    background-color: #E8DACD;
    padding-right: 10px;
    padding-left: 10px;
}

column-2 img {
    width: 100%;

}
  /* Middle column */
column-3 {
    float: left;
    width: 30%;
    background-color: #E8DACD;
    padding-right: 10px;
}
column-3 img {
    width: 100%;
}
img {
    width: 300px;
    height: 300px;
    /* object-fit: cover; */
    object-fit:cover;
}
footer {
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color:#9FA48E;
    color:black;
    text-align: center;

}
footer h1 {
    font-size: medium;
    font-weight: bold;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color */
  input[type=submit] {
    background-color: #62C8DF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #FFFF00;
  }
  
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 50px;
}

/* 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%;
    }
}

