body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1em;
    font-weight: 200;
    background-color: rgb(43, 42, 51);
    color: #f1f1f1;
}

/*.centered {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100vh;
    align-items: center;
    justify-items: center;
    margin: 0 24px;
}*/

.responsive {
    width: 100%;
    height: auto;
}

header {
    display: grid;
    justify-items: center;
    margin: 48px auto 0 auto;
    max-width: 640px;
}

.narrowcolumn {
    max-width: 600px;
    margin: 0 auto;
    padding: 8px;
}

h1, h2, h3 {
    text-align: center;
}

#description {
    font-size: 1.6em;
    line-height: 1.6em;
}

#projects {
    margin: 0 auto;
    display: grid;
    gap: .5em;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-items: center;
    max-width: 960px;
}

#projects a:first-child {
    grid-column: 1 / 3;
}

figure {
    margin: 0;
    padding: 0;
}

figcaption {
    font-size: .8em;
    text-align: center;
    color: #000;
    font-weight: bold;
    position: relative;
    top: -24px;
    padding: 8px;
    background-color: #ff9f1c;
    max-width: 256px;
    border-radius: 16px;
    margin: 0 auto;
}

#revue-embed {
	text-align: center;
	margin: 0 auto;
}

a {
    color: #ff9f1c;
}

#projects a {
    text-decoration: none;
}

a.btn, #member_submit {
	border-radius: 8px;
	border: none;
	font-size: 1em;
	font-weight: bold;
	background: #ff9f1c;
	padding: 16px;
	margin: 12px 0 8px 0;
	width: 336px; /* size of inputs + padding */
	text-align: center;
}

a.btn:hover, .member_submit:hover {
  background: #ccc;
}

.smalltext {
    font-size: 0.6em;
    line-height: 1.4em;
    font-weight: normal;
}

footer {
	text-align: center;
    padding: 24px 0 0 0;
}

/*NEWSLETTER FORM*/
input#member_submit.btn:hover {
	background-color: #fff;
	color: #333;
}

input[type=email], input[type=text] {
	padding: 16px 8px;
	width: 100%;
	max-width: 320px;
	border: 1px solid #fff;
	text-align: center;
}

input#member_email.revue-form-field:hover {
	border: 1px solid #333;
}

@media (max-width: 900px) {
    #projects {
        grid-template-columns: 100%;
    }

    #projects a:first-child {
        grid-column: 1 / 2;
    }
}