* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  min-width: 320px;
}

  @font-face {
      font-family: 'Austin';
      src: url('https://mailing-list.dredmor.com/uploads/Austin.woff2') format('woff2'),
          url('https://mailing-list.dredmor.com/uploads/Austin.woff') format('woff');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
  }

  body {
      font-family: 'Austin', serif;

      background-color: rgb(88, 65, 5);
      color: rgb(248, 218, 118);

      /* Set the background image */
      background-image: url("https://mailing-list.dredmor.com/uploads/background-large-stain.png");
      /* Set the background to cover the entire viewport */
      background-size: cover;
      /* Set the background to be fixed */
      background-attachment: fixed;
      /* Center the background */
      background-position: center;
  }

a {
  color: #b74f00;
  text-decoration-color: #893c00;
}
a:hover {
  color: rgb(248, 218, 118);
}
label {
  cursor: pointer;
  color: rgb(248, 218, 118);
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
}
.section {
  margin-bottom: 45px;
}

input[type="text"], input[type="email"], select {
  padding: 10px 15px;
  border: 1px solid rgb(70, 49, 21);
  border-radius: 3px;
  width: 100%;

  background-color: tan;

  box-shadow: 2px 2px 0 dark;
  border: 1px solid rgb(70, 49, 21);
  font-size: 1em;
}
  input:focus {
    border-color: #001637;
  }

input:focus::placeholder {
  color: transparent;
}

input[disabled] {
  opacity: 0.5;
}

.center {
  text-align: center;
}
.right {
  text-align: right;
}
.button {
  font-family: 'Austin', serif;
  color: rgb(31, 24, 0);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add this line */
  padding: 15px 30px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  text-align: center;
  background-image: url(https://mailing-list.dredmor.com/uploads/button-off.png);
  background-color: tan;
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 170px;
}

.button:hover {
  background-image: url(https://mailing-list.dredmor.com/uploads/button-on.png);
}

.button.button-outline {
}

.button.button-outline:hover {

}

.container {
  margin: 60px auto 15px auto;
  max-width: 550px;  
}

.wrap {
  padding: 40px;
}

.header {
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.header .logo img {
  width: auto;
  max-width: 400px;
}

.unsub-all {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.row {
  margin-bottom: 20px;
}
.lists {
  list-style-type: none;
  padding: 0;
}
  .lists li {
    margin: 0 0 5px 0;    
  }
  .lists .description {
    margin: 0 0 15px 0;
    font-size: 0.875em;
    line-height: 1.3rem;
    color: #888;
    margin-left: 25px;
  }
  .form .nonce {
    display: none;
  }
  .form .captcha {
    margin-top: 30px;
  }

.archive {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}
  .archive .date {
    display: block;
    font-size: 0.875em;
  }
  .archive li {
    margin-bottom: 15px;
  }
  .feed {
    margin-right: 15px;
  }

.home-options {
  margin-top: 30px;
}
  .home-options a {
    margin: 0 7px;
  }

.pagination {
  margin-top: 30px;
  text-align: center;
}
  .pg-page {
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
  }
  .pg-page.pg-selected {
    text-decoration: underline;
    font-weight: bold;
  }

#btn-back {
  display: none;
}

footer.container {
  margin-top: 15px;
  text-align: center;

  font-size: 0.775em;
  margin-top: 30px;
  margin-bottom: 30px;
}
  footer a {
    color: #f00;
    text-decoration: none;
  }
  footer a:hover {
    color: #ff0;
  }

@media screen and (max-width: 650px) {
  .wrap {
    margin: 0;
    padding: 30px;
    max-width: none;
  }
}
