@font-face {
    font-family: "Header";
    src: url("fonts/Pants\ patrol.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  * {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
  }

  header {
    background-color: black;
    background: linear-gradient(to right, black, darkslategrey, black);
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    text-align: center;
    cursor: pointer;
    position: fixed;
    z-index: 3;
    top: 0;
    width: 100%;
  }

  header h1 {
    text-shadow: 0px 2px 10px lightgrey;
    font-family: "Header";
  }

  .homepage-header{
    min-height: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: grey;
    background-image: url("images/the_little_shop_of_horrors_bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .homepage-header-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
    color: white;
    text-shadow: 0px 2px 10px black;
    background-color: rgba(0, 0, 0, 0.5);
}

.homepage-header-section .button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px; /* Add space between buttons */
}

.homepage-header-section button {
    display: inline-block; /* Ensure buttons are inline-block */
    margin: 5px; /* Space between buttons */
}

.homepage-text-feild {
    padding: 10px;
}

.homepage-text-feild:focus {
    background-color: lightgrey;
}

.homepage-text-feild:-webkit-autofill {
    background-color: lightgrey;
}



.btn {
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0px 2px 10px lightgrey;
    box-shadow: 0px 1px 6px lightgrey;
}

.index-forms{
    overflow-y: scroll;
    display: none;
    background-color: lightgrey;
    background: linear-gradient(to right, white, lightgrey);
    margin: 0 auto;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    z-index: 5;
}

#close-forms{
    cursor: pointer;
    position: sticky;
    text-align: right;
    padding: 10px;
    font-weight: bold;
    background-color: black;
    background: linear-gradient(to right, black, darkslategrey);
    color: white;
    top: 0;
}



.homepage-forms{
    padding: 10px;
}

#position-display p{
    color: white;
}

.sign-up-btn{
    margin-top: 10px;
    margin-bottom: 48px;
}

footer{
    text-align: center;
    padding-bottom: 36px;
    background-color: lightgrey;
    background: linear-gradient(to right, black, darkslategrey, black);
    min-height: 60px;
  }

  .footer-email{
    color: white;
    text-align: center;
    padding: 36px;
  }

  .footer-email a{
    color: white;
    text-decoration: none;  
  }