 @font-face {
  font-family: 'Henderson Slab';
  src: url('../assets/fonts/ITC Lubalin Graph Std Medium.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: 'Henderson SlabBasic';
  src: url('../fonts/HendersonSlabBasicBlack.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Henderson Slab1';
  src: url('../assets/fonts/ITC Lubalin Graph Std Bold Condensed Oblique.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Slab2';
  src: url('../fonts/ITC Lubalin Graph Std Bold Condensed.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Slab3';
  src: url('../assets/fonts/ITC Lubalin Graph Std Medium.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Slabb';
  src: url('../assets/fonts/Clab Personal Use-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

 :root {
  --font-size-base: 1rem;
  --spacing: 1.1rem;
  --button-padding: .5em 5em;
  --logo-width: 20vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px; /* Base font size */
}

body, html {
  width: 100%;
  height: 100%;
 font-family: 'Henderson SlabBasic';
  background-color: #542785;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  text-align: center;
}

.content {
  max-width: 90%;
  width: 100%;
}

.logo {
            max-width: 15rem;
    height: 6rem;
      margin-bottom: -0.3rem;
    /*margin-bottom: var(--spacing);*/
}

.text {
      font-size: 1.5rem;
    margin-bottom: var(--spacing);
    color: #FFF;
}

.yes-button {
  font-family: "Montserrat", sans-serif;
  padding: var(--button-padding);
  font-size: 1rem;
  background-color: #bb8a0b;
  color: white;
  border: none;
  border-radius: 0.3em;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
  margin: 0 0.3rem;
}

.no-button {
  font-family: "Montserrat", sans-serif;
  padding: var(--button-padding);
  font-size: 1rem;
  background-color: #bb8a0b;
  color: white;
  border: none;
  border-radius: 0.3em;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
  margin: 0 0.3rem;
}

.yes-button:hover {
  background-color: black;
  border: 1px solid white;
}

.privacy {
        padding-top: 5px;
  width: 100%;
  height: 5vh;
  text-align: center;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
      background-color: black;
     
}

.privacy a {
  color: #666;
  text-decoration: none;
   color: white;
}

@media (max-width: 768px) {
  .text {
            font-size: 1rem;
            margin-bottom: .7rem;
  }

  .logo {
                 width: 16vw;
        height: 16vh;
               margin-bottom: 0.1rem;
  }

  .yes-button {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
  }
  .no-button {
        font-size: 1.135rem;
        margin-bottom: 0.7rem;
  }
}