body {
  background-color: #e6f2ff;
  font-family: Verdana, sans-serif;
}
h1 {
  color: navy;
  text-align: center;
}
h2 {
  color: darkred;
  text-align: center;
}
p {
  font-size: 16px;
  text-align: center;
}
.highlight {
  color: darkgreen;
  font-weight: bold;
}
.highlight:hover{
  color:crimson;
  background-color:beige;
}
.image{
  border-color:darkgreen;
  align-items: center;
  border-style: solid;
  border-width: 5px;
  border-radius: 10px;
}
.image:hover{
  border-color:crimson;
  box-shadow: 5px 10px 18px #888888;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 14px;
  }

  .image {
    width: 100%%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  p {
    font-size: 13px;
  }
}
