@font-face {
  font-family: "Windows Regular";
  src: url("https://lixeirahistorica.neocities.org/Windows%20Regular.ttf");
}
html{
  background-color: #018281;
  font-family: "Windows Regular", sans-serif;
}
p { 
  padding: 3vw;
  padding-top: 0;
  padding-bottom: 0;
}
body {
  align-items: flex-start;
}
section {
  align-items: flex-start;
  flex-flow: row wrap;
  display:flex;
  color: #000000;
  font-weight: bold;
  height: auto;
  flex-basis: calc(100% / 3 - 3vw);
  justify-content: flex-start;
  align-content: flex-start;
}

div {
  flex-flow: row wrap;
  flex-basis: calc(100% / 2 - 3vw);
  background-color: #c0c0c0;
  margin: 2vw auto;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px #c0c0c0;
  box-shadow: 1px 1px 0px 1px #404040;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
}

input {
  box-shadow: inset 1px 1px 0.5px #404040;
  color: #000000;
  background-color: white;
  font-family: "windows regular"
}

h1 {
  margin: 0 auto;
  top: 0;
  background-image: linear-gradient(to right, #00007c, #0f80d0);
  color: white;
  font-variant-caps: all-petite-caps;
  font-size: 20px;
  padding-left: 2vw;
}
button {
  font-family: "windows regular";
  background-color: #c0c0c0;
  box-shadow: inset 1px 1px 0.5px #c0c0c0;
}
.navegar {
  position: fixed;
  bottom: 1vh;
}

.filterdiv {
  display: none;
}

.container {
  overflow: hidden;
}

.show {
  display: block;
}

.header {
  position: fixed;
  width: auto;
  height: auto;
  bottom: 0;
  right: 1vw;
}
@media screen and (max-width: 800px) {
  div {
    flex-basis: calc(100% - 3vw); /* The width is 100%, when the viewport is 800px or smaller */
  }
}