body {
    background: url('../images/other_bg.jpg') black no-repeat;
    background-size: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14pt;'
}

p {
    line-height: 1.5;
    margin-bottom: 2em;
}

.section:first-of-type {
    margin-top: 18em;
}

.section:not(:last-child) {
    margin-bottom: 50px;
}

.section {
    padding: 50px 2em 2em 2em;
}

.nav {
    text-align: center;
    margin-top: 50px;
}

.nav a {
    display: inline-block;
    margin-right: 10pt;
    margin-top: 1em;
    background-color: white;
    color: black;
    padding: .75em 3em;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
}

.nav a:hover {
    border: 2px solid black;
}

.nav a:active, .nav a.current {
    background-color: black;
    color: white;
    border: 2px solid black;

}

.content {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr minmax(20px, 20em) 1fr;
}

.separator {
    text-align: center;
}

.separator:after {
    content: "";
    display: inline-block;
    width: 1px;
    background: white;
    height: 40em;
    margin-top: 15em;
}

.intro {
    font-style: italic;
    margin-bottom: 4em;
    margin-top: 8em;
}

.subtitle {
    font-size: 12pt;
    font-weight: bold;
    padding-right: 1em;
}
.subtitle:not(:first-of-type) {
    border-left: 2px solid white;
    padding-left: 1em;
}

h1 {
    text-transform: uppercase;
    font-size: 45pt;
    margin-top: .1em;
}

.button {
    display: inline-block;
    padding: 1em;
    border-radius: 2em;
    border: 2px solid white;
    text-transform: uppercase;
    margin-top: 2em;
    color: white;
}

.button {
    text-decoration: none;
    background-color: black;
    border: 2px solid white;
    color: white;
}

.button:hover {
    background-color: white;
    border: 2px solid black;
    color: black;
}

.gallery {
    width: 100%;
    height: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    margin: 0;
    padding: 2em 0;
}

.gallery_img{
    display: inline-block;
    width: 200px;
    height: 150px;
    margin-left: 10px;
    background-size: cover;
    background-position: center;
}

.rsvp {
    background: url("../images/rsvp_bg.jpg");
    background-position: center center;
    background-size: cover;
    text-align: center;
    padding: 5em 2em;
    font-size: 18pt;
}

.rsvp .button {
    background-color: white;
    color: black;
    padding: 1em 4em;
    border-radius: 2em;
    font-weight: bold;
}

.story {
    padding-top: 70px;
    display: grid;
    grid-gap: 5em;
    grid-template-columns: 1fr 1fr;
}
.story form {
    margin-top: 7.5em;
}
.story input.input {
    width: 100%;
    padding: 1em;
}

.story textarea {
    margin-bottom: 1em;
    width: 100%;
    min-height: 10em;
    padding: 1em;
}

.story div, .story textarea, .story input {
    margin-bottom: 1em;
}

.submit{
    font-size: 12pt;
    background-color: black;
    color: white;
    padding: 1em 5em;
    border-radius: 2em;
    font-weight: bold;
    border: 2px solid white;
    cursor: pointer;
}

.file-input input.hide{
    position: absolute;
    left: -9999px;
}

.file-input .file-button {
    cursor: pointer;
    border: 1px solid white;
    background-color: gray;
    padding: .5em 1em;
    display: inline-block;
    min-width: max-content;
}

.projects {
    margin-top: 100px;
    padding: 0;
}

.projects h1 {
    text-align: center;
}

.projects .row {
    width: 100%;
    display: grid;
}

.projects .row-1 {
    grid-template-columns: 3fr 1fr;
}

.projects .row-2 {
    grid-template-columns: 1fr 1fr;
}

.projects .project-image {
    display: block;
    height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.projects a {
    text-decoration: none;
}

.projects a .darken{
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, .5);
    padding: 1em;
    text-align: center;
}

.projects a:hover .darken {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18pt;
}