body {
  padding: 0 0%;
  margin: 0;
  background-color: orange;
  color: white;
  font-size: 20px;
}
nav {
  padding: 1% 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: orangered;
}
.list-p {
  text-align: left;
  padding-left: 1.5%;
}
a {
  font-size: 30px;
}
#myImage {
  width: 200px;
  float: right;
  border-radius: 50%;
}
ul {
  color: red;
  list-style: none;
  list-style-image: url("idea.png");
}
#form {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}
#message{
  width: 50ch;
}
ol {
  color: black;
}
.center {
  margin-top: 5%;
  display: flex;
  justify-content: center;
}
h1,
p {
  width: 95%;
  text-align: center;
}
#queryInput {
  display: flex;
  justify-content: center;
}
.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  max-width: 150px;
  display: inline-block;
  background-color: white;
  color: black;
}

div .gallery:hover {
  border: 1px solid #777;
}

div .gallery img {
  width: 100%;
  height: auto;
}

div .desc {
  padding: 5px;
  text-align: center;
}
