
:root {
  --header-background: rgba(26, 26, 25, 0.85);
  --accent-orange: rgb(201, 125, 92);
  --light-gray: rgb(200, 200, 200);
  --hero-accent: rgb(232, 93, 154);
}

@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/cormorant-garamond/CormorantGaramond-Regular.ttf')
       format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/cormorant-garamond/CormorantGaramond-Medium.ttf')
       format('truetype');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/cormorant-garamond/CormorantGaramond-SemiBold.ttf')
       format('truetype');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'CormorantGaramond';
  src: url('/fonts/cormorant-garamond/CormorantGaramond-Bold.ttf')
       format('truetype');
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: 'Lato';
  src: url('/fonts/lato/Lato-Regular.ttf')
       format('truetype');
  font-style: normal;
  font-weight: normal;
}



body {
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-background);
  color: white;
  text-align: center;
  z-index: 1000;
  padding-top: 10px;
  height: 70px;
  display: flex;
  gap: 20px;
}

.header-left {
  flex: 1;
}

.header-right {
  flex: 1;
}

h1 {
  font-family: 'CormorantGaramond';
  margin: 0;
  padding: 0;
}

.header-subtext {
  font-family: 'Lato';
  font-size: 60%;
  letter-spacing: 2px;
}

.header-subtext .left {
  color: var(--accent-orange);
}

.header-subtext .right {
  color: var(--light-gray);
}

h2 {
  font-family: 'CormorantGaramond';
  font-size: 300%;
  font-weight: bold;
  color: white;
}


.hero-section {
  background-image: url('hero-bg-6xgr6ieobFw8KRpgYPuzh3_5d556d10.webp');
  background-size: cover;
  font-family: 'Lato';
  color: var(--light-gray);
  font-size: 110%;
}

.hero-section-content {
  max-width: 70em;
  margin: 0 auto;
  padding: 20ex 0 20ex 0;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 50s linear infinite;
  color: var(--accent-orange);
  font-size: 90%;
}

.marquee p {
  display: inline-block;
}

.marquee-item {
  padding-right: 2em;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero-accent {
  color: var(--hero-accent);
}

.blue-section {
  background-color: #051a36;
  color: white;
}

.blue-section .above-header {
  color: var(--accent-orange);
}

.blue-section .header {
  color: white;
  font-family: 'CormorantGaramond';
  font-size: 200%;
  font-weight: bold;
}

.cream-section {
  background-color: #fcf8f1;
  color: black;
}

.white-section {
  background-color: #ffffff;
  color: black;
}

.busy-box {
  background-color: gray;
  border: 1px solid black;
}

