* {
    box-sizing: border-box;
    font-family: "Brother 1816"
}

html,
body,
figure {
    padding: 0px;
    margin: 0px;
}

.full-height {
    height: 100vh;
}

.half-height {
    height: 50vh;
}

.third-height {
    height: 33.33333vh;
}

.margins {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0px 30px;
}

.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

h1 { font-size: 50px; }
h2 { font-size: 32px; }

h1,h2,h3,h4,h5,h6 {
    margin-block-start: .5em;
    margin-block-end: 0em;
}

p {
    font-size: 20px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    line-height: 1.5;
}

i {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    font-size: 30px;
}

.block {
    display: block;
    margin-top: 0px;
    margin-bottom: 40px;
}

a {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.white-text { color: white; }
.white-bkgd { background-color: rgb(250, 242, 237); }
.white-line { background-color: white; border: none; height: 1px; }

.black-text { color: black; }
.black-bkgd { background-color: black; }
.black-line { background-color: black; border: none; height: 1px; }

.color-1-text { color: #6BB9FC; }
.color-1-bkgd { background-color: #6BB9FC; }
.color-1-line { background-color: #6BB9FC; border: none; height: 1px; }

.color-2-text { color: #573734; }
.color-2-bkgd { background-color: #573734; }
.color-2-line { background-color: #573734; border: none; height: 1px; }

#splash-tint {
    position: absolute;
    top: 0px; bottom: 0px; left: 0px; right: 0px;
    background-color: black;
    opacity: .3;
}

.splash {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.splash-text {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: "Brother 1816";
    word-spacing: .8em;
    animation: fadeIn 3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0; 
        transform: scale(.975);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
  }
  
.splash-text-inner {
    display: table-cell;
    vertical-align: middle;
}

.splash-title {
    font-size: min(8vw, 8vh);
    font-weight: 700;
}

.splash-sub {
    font-size: min(5.5vw, 5.5vh);
    font-weight: 300;
}

#portrait.desktop-only {
    width: 33%;
    height: auto;
    float: right;
    margin-left: 100px;
    margin-top: 25px;
}

#portrait.mobile-only {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
}

#footer {
    background-color: black;
    min-height: 300px;
    width: 100%;
    padding: 20px 0;
}

#footer-flex {
    flex-direction: row;
}

#footer-flex:nth-child(1) {
    flex-grow: 1;
}

#footer-flex:nth-child(2) {
    flex-grow: 2;
}

#credits {
    text-align: center;
    color: white;
}

@media screen and (min-width: 500px) {
	.mobile-only {
		display: none !important;
	}

    .two-thirds-width {
        width: 66%;
        padding-right: 100px;
    }
}

@media screen and (max-width: 500px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-align-center {
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    i {
        font-size: 22px;
    }

    p {
        font-size: 18px;
    }
}