body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin: 0 auto;
  position: static;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header {
  background-color: rgb(243, 243, 243);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 150px;
}
header ul {
  display: flex;
  flex-wrap: nowrap;
}
header li {
  margin-left: 30px;
}
#logo a {
  height: 50px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: rgb(245, 243, 160);
  font-size: 50px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
#logo img {
  width: 150px;
  height: 150px;
}
header a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

input {
  margin-left: 30px;
  margin-right: 5px;
  border-radius: 4px;
  border-color: rgb(104, 196, 67);
}
button {
  margin-left: 5px;
  background-color: aquamarine;
  border-radius: 4px;
}
header nav a:hover {
  color: rgb(180, 34, 34);
  text-decoration: none;
}
#donate {
  background-color: rgb(243, 255, 136);
  border-radius: 3px;
  padding: 0px 5px;
}

footer {
  font-size: 20px;
  width: 100%;
  height: 250px;
  background-color: rgb(255, 255, 255);
  display: flex;
  position: relative;
}
footer ul {
  color: rgb(56, 59, 230);
  margin: 0 auto;
}
footer li {
  margin: 0 auto;
}
footer a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
footer hr {
  margin-left: 0;
  margin-right: 10px;
}
footer h1 {
  font-size: 42px;
}
