@font-face {
  font-family: "Montserrat";
  src: url("/web/fonts/montserrat.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  background-color: rgb(34, 34, 34);
  gap: 16px;
  min-height: 40px;
}

.disclaimer {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
  text-align: center;

  color: white;
  background-color: rgb(255, 193, 60);
  min-height: 40px;
}

.topbar a {
  color: white;
  text-decoration: none;
}

.container {
  min-width: 600px;
  max-width: 1200px;
  margin: 0 auto;
}
