body {
        background-color: #003466;
        font-family: 'Montserrat', sans-serif;
      }

      a:visited{
        color:white;
      }

      input {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        outline: none;
        border: none;
        border-bottom-color: #003466;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        padding: 14px 0 6px 0;
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
        margin-bottom: 20px;
      }

      input:focus {
        border-bottom-color: gray;
        transition: border-color 0.3s;
      }

      h2 {
        color: #003466;
        font-weight: bold;
      }

      #button {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-color: #FE5F04;
        border-color: #FE5F04;
        border-radius: 3px;
        box-shadow:  #FE5F04;
        color: white;
        height: 40px;
        width: 100%;
        margin-top: 35px;
        margin-bottom: 25px;
        padding-bottom: 35px;
      }

      #main-container {
        text-align: center;
        padding-top: 30px;
        color: white;
      }

      #main-container img {
        width: 200px;
        height: auto;
      }

      #form-modal {
        text-align: center;
        background-color: white;
        color: black;
        border-radius: 3px;
        margin: 0 auto;
        padding: 20px;
        max-width: 400px;
        margin-top: 40px;
      }

      #report-problem-directions-text {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .input-title {
        position: absolute;
        display: block;
        text-align: left;
        color: #003466;
        font-size: 12px;
        font-weight: 700;
      }

      @media screen and (min-width: 768px) {
        #form-modal {
          width: 50%;
          padding: 20px 40px;
        }

        #blocked-message {
          width: 30%;
          text-align: center;
          margin: 20px auto;
        }
      }