/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("bridge.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: blueviolet;
  color: black;
  font-family: Verdana;
  text-align: center;
  float: left;
}

.top img {
  border: 6px solid indigo;
  border-radius: 10px;
  margin-top: 0px;
}

.top h1 {
  margin-top: 0px;
}

.top ul {
  list-style-type: none;
  padding: 0;
  margin: auto;
}

.top li {
  display: inline;
  background-color: DarkOrchid;
  padding: 14px 16px;
}

.top li a {
  color:#000;
  padding: 14px 16px;
  text-decoration: none;
}

.top li a:hover {
  background-color: #555;
  color: white;
}

.active {
  background-color: #04aa6d;
  color: white;
}
.grid-childtext img {
  border: 6px solid indigo;
  border-radius: 10px;
  margin-top: 0px;
}
.grid-childtext p {
  border: 6px solid indigo;
  border-radius: 10px;
  background-color:midnightblue;
  color: Lightseagreen;
  width: 800px;
  margin: auto;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-left: 520px
}

.grid-childtext {
  color: lightseagreen;
  
}

.grid-childzero {
  margin-left: 50px;
}