/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Import fonts */
  @font-face {
    font-family: 'American Grotesk Black';
    src: url('../fonts/american-grotesk-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'American Grotesk Regular';
    src: url('../fonts/american-grotesk-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  
  /* Base body styles */
  body {
    font-family: 'American Grotesk Regular', sans-serif;
    text-transform: uppercase; /* forces all text to uppercase */
    color: #000;
    line-height: 1.5;
    padding: 20px;
    background-color: #fff;
  }
  
  /* Header styles */
  header {
    margin-bottom: 20px;
    text-align: center;
  }
  
  header h1 {
    font-family: 'American Grotesk Black', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  /* Main content sections */
  main section {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #ccc;
  }
  
  main section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  /* Horizontal rule styling */
  hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0;
  }

/* Digital page flip layout styles */

.page-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.page section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.nav-button {
  position: fixed;
  bottom: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}

#prev-page {
  left: 20px;
}

#next-page {
  right: 20px;
}