* {
  box-sizing: border-box;
}

a {
  color: #323c3f;
  text-decoration: underline;
}

button {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  width: 40%;
  min-width: 320px;
  display: inline-block;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
  height: 100dvh;
  width: 100%;
}

body {
  background-color: #ffffff;
  border: 0 #ffffff;
  display: flex;
  flex-flow: column;
  height: 100%;
  margin: 0;
  color: #ffffff;
  min-height: 100%;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  font-size: 1rem;
  line-height: 20px;
  align-items: center;
  justify-content: center;
}

body.landing-page {
  background: #284f4e !important;
  background-color: #284f4e !important;
  border: 0 #284f4e !important;
  display: flex;
  flex-flow: column;
  height: 100%;
  margin: 0;
  color: #284f4e !important;
}

main {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

h1 {
  margin: .67em 0;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: bold;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 20px 0;
  color: #284f4e;
  text-align: left;
  font-family: Franklin Gothic Medium Cond, sans-serif;
}

.center-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-logo img{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 256px;
  height: auto;
}

img.tiny-logo {
  width: 40px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 48px auto 0 auto;
  padding-top: 0;
}

.enter-button {
  color: #eaddc7;
  background-color: #284f4e;
  padding: 14px 36px;
  font-size: 1.2rem;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 24px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  transition: color 0.2s;

}

.enter-btn:hover {
  color: #fff;
  background: #444;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #284f4e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 380px;
}

.header-links {
  display: flex;
  gap: 32px;
}

.header-links a {
  color: #eaddc7;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: Din Condensed, sans-serif;
  transition: color 0.2s;
}

.header-links a:hover {
  color: #fff;
}

.header-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 64px;
  max-width: 64px !important;
  padding: 0;
}

.header-logo img {
  width: 32px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto 0 auto;
  padding-top: 0;
}

.main-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #284f4e;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  height: auto;
}

.footer-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0 4px 0;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 4px;
  position: static;
}

.footer-links a {
  color: #eaddc7;
  text-align: center;
  font-size: 12px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  text-decoration: none;
  position: static;
  height: auto;
}

.footer-links a:hover {
  color: #fff;
}

.extras {
  color: #eaddc7;
  text-align: center;
  font-size: 10px;
  font-family: Franklin Gothic Medium Cond, sans-serif;
  position: static;
  margin-bottom: 2px;
  margin-top: 0;
  height: auto;
}

.landing-extras {
  color: #eaddc7;
  text-align: center;
  word-break: normal;
  height: 5%;
  font-size: 10px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  font-family: Franklin Gothic Medium Cond, sans-serif;

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 479px) {

}

@font-face {
  font-family: 'Franklin Gothic Medium Cond';
  src: url('./fonts/franklin_gothic_medium_cond.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Franklin Gothic Regular';
  src: url('./fonts/franklin_gothic_regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Franklin Gothic Cond';
  src: url('./fonts/franklin_gothic_condensed.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Din Alternate';
  src: url('./fonts/din-alternate-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Din Condensed';
  src: url('./fonts/din-condensed-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}