* {
  margin: 0;
}

html {
  background: #263238;
  color: #bbc4c8;
  height: 100%;
}

.head {
  display: grid;
  grid-template-rows: 2.5fr 0.5fr 0.5fr;
}

#terminal {
  background-color: #222d32;
  box-sizing: border-box;
  width: 600px;
  height: 400px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 1.5em 0em;
}

.search_box {
  grid-area: 2/2/3/3;
}

.bookmark {
  display: grid;
  margin-left: 10%;
  margin-right: 10%;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.category {
  width: 150px;
  height: 100%;
}

.bookmarks {
  border: #191c1e;
  border-radius: 20px;
  box-shadow: 0px 4px 5px #171d20;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #222d32;
}

.icon {
  color: #00cf35;
  text-align: center;
  margin: 15px;
}

.input_box {
  border: none;
  outline: none;
  background: none;
  padding-right: 15px;
  padding-left: 15px;
  width: 422px;
  color: whitesmoke;
  font-size: 22px;
  height: 40px;
  text-align: start;
  flex-shrink: 2;
}

.button {
  background: none;
  border: none;
  transition-duration: 0.6s;
  position: absolute;
  padding-left: 65px;
  height: 40px;
  opacity: 30%;
  cursor: pointer;
}

.engine {
  background: none;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  border: none;
  transition-duration: 0.6s;
  opacity: 30%;
  cursor: pointer;
}

.search_box {
  display: flex;
  flex-shrink: 0;
  background: #222d32;
  width: 600px;
  padding: 0px;
  margin-bottom: 40px;
  border-radius: 25px 25px 25px 25px;
  box-shadow: 0px 4px 5px #171d20;
  align-self: center;
  height: 40px;
}

.engine:hover {
  filter: saturate(150%) brightness(120%) !important;
  opacity: 100%;
}

.button:hover {
  filter: saturate(150%) brightness(120%) !important;
  opacity: 100%;
}

li {
  font-size: 16px;
  list-style-type: none;
  padding: 5px;
}

a:link {
  text-decoration: none;
  color: #8f9191;
}

a:visited {
  color: #8f9191;
}

a:hover {
  color: #bd3cd3;
}

div.bookmarks.cod a:hover {
  color: #00cf35;
}

div.bookmarks.doc a:hover {
  color: #ff8a00;
}

div.bookmarks.ent a:hover {
  color: #ff492f;
}

div.bookmarks.mus a:hover {
  color: #00b8ff;
}

div.bookmarks.art a:hover {
  color: #ff62ce;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 25%;
  margin: 10px;
  border: #191c1e;
  border-radius: 20px;
  box-shadow: 0px 4px 5px #171d20;
  justify-items: center;
  text-align: center;
  width: 50%;
  height: 25px;
  background-color: #222d32;
}

@media screen and (max-width: 1000px) {
  .bookmark {
    grid-template-columns: 1fr;
  }
}
