* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: Arial, Helvetica, sans-serif;
}
header {
  background-color: #e87461;
  text-align: center;
  font-size: 2rem;
}
.full-width-image {
  width: 100%;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  display: block;
}
body {
  background-color: #a1cf6b;
}
.container {
  text-align: left;
  border: 2px solid;
  border-radius: 2rem 2rem 2rem 2rem;
  margin: 2rem;
  padding: 2rem;
  text-align: justify;
  background-color: hsl(255, 100%, 97%);
  /*background-image: url("prescott-horn-AHaOGlMqS2A-unsplash.jpg");
    */
}
.container h2 {
  text-align: center;
}
.container p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1.5rem;
}
.container img {
  max-width: 50%; /* Image can only be as wide as its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove any extra space below the image */
  margin: 0 auto; 
}
.highlighted-item {
  border: 1px solid #ddd; /* Optional: Add a border around each item */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px; /* Optional: Add rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  text-align: center; /* Center the content */
}
nav {
  background-color: #7ac74f;
  height: 3rem;
}
nav ul {
  height: 3rem;
}
nav ul li {
  display: inline;
  padding-inline: 2rem;
  line-height: 3rem;
  font-size: 2rem;
}

nav ul li:hover {
  background-color: #333;
}
nav ul li img {
max-height: 2rem; /* Adjust this value as needed */
  max-width: auto;
  vertical-align: middle; 
}
nav ul li a {
  color: white;
}
nav ul li a:hover {
  text-decoration: yellow;
}

form {
  line-height: 2rem;
  line-height: 2rem;
  background-color: #4f83c7;
  border-radius: 2rem;
}
legend {
  text-align: center;
}
fieldset {
  border-radius: 1rem;
  padding: 1rem;
}
label,
input,
button {
  border-radius: 0.5rem;
}

input,
button {
  font: inherit;
  text-align: left;
}
button p {
  color: white;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  color: dodgerblue;
}
a:hover:focus {
  color: black;
}
a:active {
  color: yellow;
}

iframe {
  width: 100%;
}

