@font-face {
  font-family: "MubiFinder Expanded";
  src: url("../../fonts/mubi-finder-expanded.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

:root {
  --height-header: 50px;
  --height-navbar: 42px;
  --height-navbar-mobile: 115px;

  --margin-bottom-page: 2rem;
  --margin-bottom-page-large: 8rem;
}

.logo {
  height: 32px;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 1320px;
  min-height: calc(100vh - var(--height-header) - var(--height-navbar) - 50px);
  margin: 2rem auto var(--margin-bottom-page) auto;
  padding: 0 1rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hidden {
  display: none !important;
}

a {
  outline: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-drag: none;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #212529;
  }
}