body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: Nunito, sans-serif;
  background-color: #216869;
  margin: 0;
  padding: 0;
  color: #333;
  min-height: 100vh;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: #1f2421;
}

.logo {
  text-indent: -9999px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 40px;
  width: 160px;
  background-size: contain;
  text-decoration: none;
  text-shadow: none;
  margin: 5px auto;
}

main {
  max-width: 800px;
  margin: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* border-radius: 8px; */
}

h1 {
  color: #000;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 35%,
    rgba(108, 253, 48, 1) 75%
  );
}

p {
  line-height: 1.6;
}

footer {
  display: flex;
  height: 150px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #1f2421;
  bottom: 0;
}

.made-with {
  display: flex;
  /* border: 2px solid white; */
  height: 35px;
  width: 100%;
  justify-content: center;
}
.made-with p {
  margin: 0 10px;
}
