html, body {
  background-color: #40826D;
  color:white;
  text-align: center;
  max-width: 100%;
  height: 100%;
}

.site-header {
  text-align: center;
}

.header-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}

h1 {
  font-family: "Beth Ellen", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  margin-top: 2px;
}

.site-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
}

.search {
  padding: 15px;
}

#searched-bird {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  padding: 10px;
  border-radius: 120px;
  border: none;
  width: 600px;
}

#bird-results {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  padding-top: 25px;
}

.result-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card {
  background-color: #96DED1;
  width: 550px;
  height: 150px;
  padding-top: 25px;
  margin: 30px;
  border-radius: 30px;
}

footer {
  font-family: "Inter", sans-serif;
  padding: 60px 20px 30px 20px;
}


/* media queries to implement responsive design in the future

/* Extra small devices (phones, 600px and down)
@media only screen and (max-width: 600px) {
  h1 {
  font-style: normal;
  font-size: 30px;
  margin-top: 2px;
  }

  .site-description {
  font-size: 15px;
  }

  #searched-bird {
  width: 200px;
  font-size: 15px;
  }

  #bird-results {
  font-size: 15px;
  }

  footer {
  font-size: 8px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up)
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up)
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up)
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) 
@media only screen and (min-width: 1200px) {...}*/