body {
  background: linear-gradient(to bottom right, rgb(173, 247, 173), rgb(204, 248, 204));
  color: green;
  font-family: sans-serif;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

a:link,
a:visited {
  color: white;
  text-decoration: none;
}

a.one:link,
a.one:visited {
  color: green;
  text-decoration: none;
}

a:hover {
  font-weight: 600;
}

a:active {
  color: white;
  text-decoration: none;
}

a.one:active {
  color: green;
  text-decoration: none;
}

header {
  background-color: rgb(173, 247, 173);
  padding: 20px;
  text-align: center;
}

.logo-fixed img {
    animation-fill-mode: backwards;
    animation-delay: 1s;
    max-width: 300px;
}

h1 {
  margin-bottom: 5px;
}

nav {
  background-color: limegreen;
  color: #fff;
  padding: 10px;
}

nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #fff;
}

main {
  padding: 20px;
}

#about {
  text-align: center;
  padding: 20px;
}

#about h2 {
  margin-bottom: 10px;
}

#about p {
  margin-bottom: 20px;
}

#about button {
  background: limegreen;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: medium;
  height: 75px;
  padding: 10px 20px;
  text-decoration: underline;
  width: 150px;  
}

.services {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(3, 1fr);
  justify-self: center;
}

.service-card {
  background: palegreen;
  margin: 10px;
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 250px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
}

.gallery img,
#announcement img {
  max-width: 125px;
  max-height: 75px;
}

#contact input, 
#contact textarea {
  align-items: end;
}

.wordpress-websites {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(3, 1fr);
}

form button {
  margin: 0px 10px 0px 0px;
}

#books-to-share {
  margin-top: 15px;
}

.books {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(4, 1fr);
}

.book {
  margin-bottom: 5px;
}

.book button {
  background: limegreen;
  border: 0px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  height: 50px;
  padding: 10px 20px;
  width: 200px;
}

footer {
  background: limegreen;
  color: #fff;
  padding: 10px 0px 10px 0px;
}

@media (width >=800px) {
  .logo-fixed img {
    min-width: 800px;
  }

  nav li {
    margin: 0 5px;
  }

  #about button {
    font-size: large;
    height: 50px;
    padding: 10px;
    width: 175px;  
  }

  .services {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 100%;
    justify-self: center;
  }

  .gallery img,
  #announcement img {
    min-width: 400px;
    min-height: 250px;
  }

  .gallery div {
    margin: 0px 0px 10px 0px;
  }

  .wordpress-websites {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .books {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 100%;
  }
}