/*ID*/
#validation {
  text-align: center;
}

nav {
  background-color: #9df9ef;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-radius: 8px;
}

nav a {
  color: #a28089;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #ffa8b6;
}

h1 {
  text-align: center;
  font-size: 2.5em;
  color: #3f2a14;
}

h2 {
  text-align: center;
  font-size: 1.8em;
  color: #3f2a14;
}

body {
  margin: 10px;
  font-family: Arial, sans-serif;
  color: #3f2a14;
  background-color: #edf7f6;
}

main {
  border: 3px solid #ffa8b6;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
}

p {
  margin: 10px;
  padding: 20px;
  line-height: 1.5em;

  border-radius: 8px;
}

video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.horn-image {
  border-radius: 8px;
}

figcaption {
  font-style: italic;
  color: #3f2a14;
}

.responsive {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 18px;
}

/*media query that hides the image when the screen is 550 pixels or lower*/

@media only all and (max-width: 550px) {
  img {
    display: none;
  }
}
