* {
  box-sizing: border-box;
}
body {
  color: hsl(0, 0%, 18%);
  font-family: fjord-one-regular;
}
body h1 {
  text-align: center;
}
#breadcrumb {
  color: hsl(0, 0%, 18%);
  font-family: fjord-one-regular;
}
#breadcrumb a {
  text-decoration: none;
  color: hsl(0, 0%, 18%);
}
#breadcrumb a:hover {
  color: hsl(0, 0%, 67%);
  text-decoration: underline;
}
#breadcrumb a + a::before {
  content: "/\00a0";
  color: hsl(0, 0%, 18%);
  font-weight: bold;
}
.sidebar {
  min-height: 200px;
  width: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: hsl(0, 0%, 18%);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border-radius: 0px 0px 10px 0px;
}
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: hsl(0, 0%, 67%);
  display: block;
  transition: 0.3s;
}
.sidebar a:hover {
  color: white;
}
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: hsl(0, 0%, 18%);
  color: hsl(0, 0%, 76%);
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  font-family: fjord-one-regular;
}
.openbtn:hover {
  background-color: hsl(0, 0%, 67%);
  color: hsl(0, 0%, 18%);
}
main {
  transition: margin-left 0.5s;
  padding: 30px;
}
main article {
  background-color: hsl(146, 49%, 80%);
  padding: 20px;
  border-radius: 10px;
}
.content .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px ;
}
#butt {
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 20px;
}
#butt #button {
  background-color: hsl(0, 0%, 67%);
  border-radius: 10px;
  text-decoration: none;
  color: hsl(0, 0%, 18%);
  border: 1px solid hsl(0, 0%, 18%);
  padding: 10px;
  box-shadow: 3px 3px hsl(0, 0%, 18%);
}
#butt #button:hover {
  border: 1px solid hsl(0, 0%, 67%);
  box-shadow: 3px 3px hsl(0, 0%, 67%);
  background-color: hsl(0, 0%, 76%);
}
.footer {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  article {
    grid-column: span 2;
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  article {
    grid-column: span 2;
    padding: 20px;
    background-color: hsl(146, 49%, 80%);
    border-radius: 10px;
  }
  article h2 {
    text-align: center;
  }
}
