* {
  box-sizing: border-box;
  margin: 0;
  top: 0;
}
#navigation {
  background-image: linear-gradient(
    rgb(10, 56, 75),
    rgb(9, 79, 110),
    #1eafedff
  );
  height: 10vh;
  width: 100vw;
}
#navigation ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
  display: flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
}

#navigation ul li {
  background-color: rgb(222, 193, 99);
  padding: 1%;
  border-radius: 2vh;
  color: white;
}
#navigation ul li:hover {
  background-color: rgb(197, 157, 25);
  padding: 1%;
  border-radius: 2vh;
  color: white;
  text-decoration: underline;
}

#container {
  background-color: #1eafedff;
  width: 100vw;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#container h1 {
  background-color: rgb(222, 193, 99);
  color: white;
}
#container p {
  padding: 1%;
  background-color: rgb(222, 193, 99);
}
#container ul {
  margin-top: 10px;
  max-width: 100%;
  list-style-type: none;
  display: flex;
  gap: 2px;
  justify-content: flex-start;
  padding-left: 0%;
}
#container ul li {
  background-color: rgb(222, 193, 99);
  padding: 1%;
  color: white;
}
#container ul li:hover {
  background-color: rgb(197, 157, 25);
  padding: 1%;
  color: white;
  text-decoration: underline;
}

#article {
  background-color: rgb(222, 193, 99);
  padding: 1%;
  display: grid;
  max-width: 100%;
  max-height: 100%;
  grid-template-columns: 1fr 5fr;
}
#article img {
  max-width: 100%;
  max-height: 100%;
  min-width: 150px;
  min-height: 150px;
  background-color: rgb(197, 157, 25);
  border-radius: 10px;
}

#article #article_caption {
  background-color: rgb(197, 157, 25);
  font-size: 0.7rem;
}
#tips {
  margin-top: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  color: white;
}
#tips span {
  margin-left: 5px;
  border: 5px solid white;
  background-color: rgb(197, 157, 25);
  border-radius: 2vh;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  padding: 1%;
}
#footer {
  width: 100vw;
  height: 20vh;
  background-image: linear-gradient(
    #1eafedff,
    rgb(9, 79, 110),
    rgb(10, 56, 75)
  );
}
#footer ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  
}

#footer ul li {
  margin-left: 10px;
  background-color: rgb(222, 193, 99);
  padding: 0.5%;
  color: white;
  border-radius: 2vh;
}
#footer ul li:hover {
  background-color: rgb(197, 157, 25);
  padding: 0.5%;
  color: white;
  text-decoration: underline;
  border-radius: 2vh;
}
