body {
  --foreground: #76A0CA;
  --primary: #1caff2;
  --secondary: #fff;
  --tertiary: #526e89;

  font-family: Avenir;
  height: 100vh;
  background-color: #14181D; color: var(--foreground);
  text-align: center;
  vertical-align: middle;;
}

body, html {
  overflow: hidden;
  height: 100%;
}

.select-text {
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 0px;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: top middle;
  align-items: center;
  height: 100vh;
}



#heart-progress{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 100%;
  height: 10vh;
}

#img-logo {
  height: 5vh;
}

#poster {
  max-height: 30vh;
}

#forum {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#formsubmit {
  display: flex;
  justify-content: center;
  gap: 0px;
  height: 2rem;
  color: var(--secondary);
}

#usernameInput {
  padding-left: 10px;
  width: 15rem;
  font-size: 20px;
}

#FetchButton {
  background-color: var(--secondary);
  padding: 0px;
  min-width: 30px;
  width: 10rem;
  height: 2rem;
  font-size: 20px;
}

#FetchButton:hover {
  background-color: var(--primary)
}

#filter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10rem;
}

.filter-div {
  gap: 0px;
}

select {
  flex: 1;
  border: 2px solid var(--tertiary);
  background: var(--secondary);
  padding: 2px;
  height: 2rem;
  width: 10rem;
  transition: 0.4s;
}
select:hover {
  background: var(--primary);
}

option {
  gap: 20px;

  background: var(--secondary);
  padding: 10px;
  transition: 0.4s;
}
option:hover {
  background: var(--primary);
}

footer {
  margin-top: 50vh;
  text-align: center;
}
