body {
  font-family: "Courier New";
  background: hsl(0, 100%, 0%);
  padding: 6px;
  text-align: left;
  color: white;
}

a:link {
  color: rgb(255, 49, 49);
}

a:visited {
  color: rgb(6, 10, 255);
}

a:hover {
  color: rgb(239, 145, 145);
}

.button{
  border-radius: 30px;
  height: 30px;
  background-color: rgb(80, 80, 255);

}

#brand{
  color: rgb(255, 49, 49);
  text-align: center;
  height: 30px;
  font-family: monospace, 'Courier New', Courier;
}

#page{
  visibility: hidden;
}

.tabs{
  width: 60px;
  border: 0px solid;
  background-color: rgb(36, 36, 36);
  color: rgb(84, 84, 84);
  border-radius: 5px;
}

hr{
  background-color: rgb(36, 36, 36);
  border: none;
  height: 1px;
}

#tab{
  background-color: rgb(36, 36, 36);
  border-radius: 5px;
  margin-bottom: 5px;
  visibility: hidden;
}
#images{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: left;
  display: none;
}

.image {
  width: 30%;
  overflow: hidden;
}
.image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#searchboxfix{
  position: fixed;
}
.container {
  max-width: 600px;
  margin: auto;
  background: black;
  padding: 20px;
  border-radius: 10px;
}

#searchBox{
  background-color: rgb(36, 36, 36);
  border: 1px solid; 
  border-radius: 7px;
  height: 25px; 
  width: 150px;    
  text-align: left;   
  text-indent: 4px;
  font-size: 15px;
  position: relative;

}

#search{
  border: 0px solid; 
  border-radius: 7px;
  height: 28px;
  margin-left: 2px;
  background-color: rgb(255, 49, 49) ;
  color: black;
  font-family: monospace;
  font-size: larger;
}
#searchInput {
  width: 70%;
  padding: 10px;
  margin-right: 5px;
}

.result{
  background-color: rgb(16, 16, 16);
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: left;
  border-radius: 5px;
  padding: 3px;
}
.result-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255, 255, 255);
}