.note {
  max-width: 35rem;
  margin: 0 auto;
}
.note-header {
  text-align: center;
}
.note-date {
  /* margin-bottom: .5rem;
  display: block; */
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 3rem 0;
}
.gallery figure a {
  border: 0;
}
.gallery figure {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 45rem) {
  .gallery {
    margin-left: -3rem;
    margin-right: -3rem;
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
}
.moreform {
  border-top: 1px solid black;
  padding-top: 30px;
}
.moreform p {
  font-style: italic;
  text-align: center;
}

.moreform input[type="text"],
.moreform input[type="date"],
.moreform input[type="datetime"],
.moreform input[type="email"],
.moreform input[type="number"],
.moreform input[type="search"],
.moreform input[type="time"],
.moreform input[type="url"],
.moreform textarea,
.moreform select
{
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  background: #fff;
  margin-bottom: 4%;
  border: 1px solid #ccc;
  padding: 3%;
  color: #555;
  font: 95% Arial, Helvetica, sans-serif;
}
.moreform input[type="text"]:focus,
.moreform input[type="date"]:focus,
.moreform input[type="datetime"]:focus,
.moreform input[type="email"]:focus,
.moreform input[type="number"]:focus,
.moreform input[type="search"]:focus,
.moreform input[type="time"]:focus,
.moreform input[type="url"]:focus,
.moreform textarea:focus,
.moreform select:focus
{
  box-shadow: 0 0 5px #cccccc;
  padding: 3%;
  border: 1px solid #333333;
}

.moreform input[type="submit"],
.moreform input[type="button"]{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  padding: 3%;
  background: #cccccc;
  border-bottom: 2px solid #ccc;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none;
  color: #000;
  text-transform: uppercase;
}
.moreform input[type="submit"]:hover,
.moreform input[type="button"]:hover{
  background: #bbbbbb;
}
