@font-face {
    font-family: industry-inc-stencil;
    src: url(/fonts/IndustryInc-Stencil.woff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    color: #adadad;
}

mark1 {
  -webkit-animation: 1.25s highlight 1.5s 1 normal forwards;
          animation: 1.25s highlight 1.5s 1 normal forwards;
  background-color: none;
  background: linear-gradient(90deg, #000000 50%, rgba(228, 152, 129, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

mark2 {
  -webkit-animation: 2.0s highlight 2.25s 1 normal forwards;
          animation: 2.0s highlight 2.25s 1 normal forwards;
  background-color: none;
  background: linear-gradient(90deg, #000000 50%, rgba(228, 152, 129, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

mark3 {
  -webkit-animation: 2.75s highlight 3.0s 1 normal forwards;
          animation: 2.75s highlight 3.0s 1 normal forwards;
  background-color: none;
  background: linear-gradient(90deg, #000000 50%, rgba(228, 152, 129, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

mark4 {
  -webkit-animation: 3.5s highlight 4.25s 1 normal forwards;
          animation: 3.5s highlight 4.25s 1 normal forwards;
  background-color: none;
  background: linear-gradient(90deg, #000000 50%, rgba(228, 152, 129, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#home {
    height: 720px;
    background-image: url(/images/ds-bg-wide-52op-720.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 100vw;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    padding: 30px 0;
    color: black;
    width: 95%;
    max-width: 540px;
    margin: 0 auto;
}

section:not(#home) {
    text-align: left;
    /* Add any other styles you'd like to apply specifically to sections other than #home */
}

nav {
    background-color: #000000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    margin: 0 15px;
    font-family: industry-inc-stencil, sans-serif;
    font-size: 18pt;
    text-decoration: none;
    color: #e49881;
}

h1, h2, h3, h4, h5, h6 {
    font-family: industry-inc-stencil, sans-serif;
    color: black;
}


h1 {
  font-size: 18pt;
  line-height: 22px;
  text-align: center;
  color: black;
}

p {
    font-family: industry-inc-stencil, sans-serif;
    font-size: 14pt;
    line-height: 18px;
    text-align: center;
    padding-top: 10px;
}

footer {
    background-color: #000000;
    padding: 30px 0;
    font-size: 14pt;
    color: white;
    text-align: center;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

input[type="submit"] {
    width: 64px;
    height: 24px;
    background-color: white;
    color: black;
    border: black;
    border-style: solid;
    border-radius: 3px;
    cursor: pointer;
    text-indent: 0px;
}

input[type="submit"]:hover {
    opacity: 0.8;
}


@media screen and (max-width: 690px) {
    nav a {
      margin: 0 0px;
      font-size: 12px;
    }

    nav a::after {
      content: "•";
      margin-left: 5px;
      margin-right: 5px;
    }

    nav a:last-child::after {
      content: "";
      margin: 0 0px;
    }

    #home p {
        display: block;
    }

    #home p::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
    }

    #home p span {
        display: block;
    }
}