 @keyframes move-it {
  0% {
    background-position: initial;
  }
  100% {
    background-position: 400px 0px;
  }
}

* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {  
  background: repeating-linear-gradient(
  -45deg,
  #cb8097,
  #cb8097 5%,
  #af677e 5%,
  #af677e 10%
  );
  background-size: 400px 400px;
  animation: move-it 4s linear infinite;
  display: grid;
  height: 100vh;
  margin: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

h2 {
    font-size: 2rem;
}

p {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

br {
    margin: 10px;
}

.blind {
    filter: blur(4px);
}

.main-content {
    display: flex;
    width: 800px;
    border: 4px solid #561630;
    position: fixed;
    justify-self: center;
    background-color: #ffbbd3;
    margin-top: max(12px, 10vh);
    box-shadow: 10px 10px 5px #3f001d;
    flex-direction: column;
    max-height: 80vh;
}

.nav {
    padding: 12px;
    border-bottom: 4px solid #561630;
    padding-bottom: 12px;
    display: flex;
    background-color: #ffbbd3;
    justify-content: space-around;
}

.content {
    padding: 12px;
    overflow: scroll;
}

.navBtn {
    background-color: #cb8097;
    border: solid 2px #000;
    border-radius: 8px;
    width: 175px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    display: inline-flex;
    padding: 2px;
}

.currentPageButton {
    background-color: #af677e;
}

.primaryBtn {
    background-color: #98dcff;
    border: solid 2px #3f001d;
    border-radius: 8px;
    width: 200px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem;
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 8px;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
