/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom */
body {
    /*color: #353535;*/
    color: #fafafa;

    /*background-color: #ffffff;*/
    background-color: #000;
    opacity: 1;
    background-image: radial-gradient(#D9D9D9 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;

    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;

    font-size: 14px;
    line-height: 24px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
}
  
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes the video fill like background-image */
    z-index: 1;
}
  
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* white overlay, 60% opacity */
    z-index: 2;
}
  
.container {
    padding: 20px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;     /* vertical centering */
    height: 100vh;           /* full viewport height */
}

.logo {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}
.logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}
.content { 
    display: flex;
    flex-direction: column;
    text-align: center;
}

h1, h2 {
    font-size: 16px;
    line-height: 32px;
    margin: 15px 0px;
    font-weight: 400;
}
p {
    padding: 0px 0px;
    margin: 15px 0px;
}
strong {
    font-weight: bold;
}

footer {
    display: flex;
    flex-direction: column;

    padding: 30px 0px;
    width: 100%;
    text-align: center;

    font-size: 12px;
    line-height: 22px;
}

button {
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #353535;
    color: #353535;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.credits {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 3;
}

.credits a {
    color: #444;
    font-size: 8px;
    text-decoration: none;
}
.credits a:hover {
    color: #444;
    text-decoration: none;
}
.credits a:visited {
    color: #444;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        justify-content: baseline;
        padding-top: 20px;
    }
    .credits {
        position: relative;
        bottom: 0px;
        right: 0px;
        display: flex;
        text-align: center;
        justify-content: center;
    }
}