body {
    background-color: black;
    color: white;
}

body, button, select{
  font-family: 'Comfortaa';
}

button{
  font-weight: bold;
}

.container {
    display: grid;
    grid-template-areas:
      "header header"
      "content about"
      "footer footer";
    grid-template-columns: 3fr 1fr;
    gap: 5px;
    background-color: black;
    padding: 5px;
}

.container > div {   
    padding: 10px;
  }
  .container > div.header {
    border: solid #00B7EB 2px;
    grid-area: header;
    text-align: center;
  }
  .container > div.about {
    border: solid #00B7EB 2px;
    grid-area: about;
  }
  .container > div.content {
    border: solid #00FFFF 2px;
    grid-area: content;
  }
  .container > div.footer {
    border: solid #00FFFF 2px;
    grid-area: footer;
}

a {
    color: #0ff;
    text-decoration: none;
}

a:visited {
    color:#00B7EB;
}

a:hover{
    color:white;
}

hr{
    border-color:#00B7EB;
}

.links{
    list-style-type: none;
    line-height: 200%;
}

select{
    border-color: white;
    background-color: black;
    color:white;
}

.searchresult{
  position: relative;
  & .image{
    height: 100px;
    max-width: 100%;

    & img{
      height: 100%;
      max-width: 100%;
      object-fit: contain;
    }
  }

  & .desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
}

.centered{
  text-align: center;
}

.imagetable{
  margin-left: auto;
  margin-right: auto;
  & td{
    border: 1px solid #00B7EB;
    width: 25%;
    aspect-ratio: 1 / 1;
  }
}

button{
  background-color: #00B7EB;
  color: black;
  border: none;
  font-size:small;
  border-radius: 5%;
  padding: 5px;
}

button:hover{
  background-color: #00FFFF;
}

button:active{
  background-color: white;
}

button:disabled{
  background-color: black;
  border: 1px solid #00B7EB;
  color: white;
}

.characterbutton{
  & img{
    height: 16px;
  }
  width: 100%;
}

.characterfilter{
  width: 100%;
}