:root {
    --bg-color: hsl(210deg 28.57% 97.25%);
    --text-color: rgba(0, 0, 0, 0.90);
    --link-color: hsl(209, 100%, 50%);
    --link-hover-color: hsl(339.61deg 82.19% 51.57%);
  }

  [data-theme="dark"] {
    --bg-color: hsl(0, 0%, 0%);
    --text-color: rgba(255, 255, 255, 1);
  }

  * {
    box-sizing: border-box;
  }

  html {
    font-size: 18px;
  }

  @media (max-width: 720px) {
    html {
      font-size: 12px;
    }
  }

  body {
    color: var(--text-color);
    background-image: url("https://reallybadmarketingcompany.s3.us-east-2.amazonaws.com/paper-transparent.png");
    background-color: var(--bg-color);
    font-family: Arial, sans-serif;
    word-break: break-word;
    margin: 0 auto;
    overflow: auto;
    padding: 1rem;
  }

  nav {
    border-top: 4px solid var(--text-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    background-image: url("https://reallybadmarketingcompany.s3.us-east-2.amazonaws.com/paper-transparent.png");
    display: flex;
  }

  nav a {
    font-weight: bold;
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    color: var(--text-color);
  }

  header h1 {
    font-size: 16vmin;
  }

  h1 {
    font-size: 4rem;
    margin: 1rem 0;
  }

  h2 {
    font-size: 1.5rem;
  }



  header i {
    font-size: 1.2rem;
  }

  label {
    font-size: 1rem;
  }

  hr {
    margin: 2rem;
  }

  .center {
    text-align: center;
  }

  a {
    color: var(--link-color);
    transition: color 0.2s ease;
    text-decoration: none;
  }

  a:hover,
  a:focus {
    color: var(--link-color);
  }

  button {
    background: #fa6969;
    font-family: inherit;
    padding: 0.6em 1.3em;
    font-weight: 900;
    border: 3px solid #242222;
    border-radius: 0.4em;
    box-shadow: 0.1em 0.1em;
    cursor: pointer;
    font-size: 1rem;
    color: #242222;
  }

  button:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em;
  }

  button:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
  }

  .contact {
    margin-top: 3rem;
    margin-bottom: 5rem;
  }

  .offset-section {
    padding-right: 20px;
    padding-left: 20px;
  }
  

  .double-line {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    height: 4px;
  }
  
  /* Temporary CSS */
  .vintage-offer {
    font-size: 1.5rem;
    border: 0.6rem solid #1c150e;
    border-radius: 2px;
    padding: 2rem;
    background-color: #f2ecd9;
    color: #3b3738;
    box-shadow: -11px 11px 10px 0px rgba(0, 0, 0, 0.21);
    margin-bottom: 2rem;
  }
  .color-pallete {
    display: flex;
    margin-bottom: 1rem;
  }
  .color-pallete div:nth-child(1) {
    height: 0.5rem;
    width: 3rem;
    background-color: #5c5a59;
  }
  .color-pallete div:nth-child(2) {
    height: 0.5rem;
    width: 3rem;
    background-color: #cabda1;
  }
  .color-pallete div:nth-child(3) {
    height: 0.5rem;
    width: 3rem;
    background-color: #57bacb;
  }

  #events { 
    max-width: 520px;
    padding-bottom: 80px;
  }