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;
}


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,700;6..12,800&family=Roboto:ital@1&display=swap');

html,body{
    width: 100%;
    height: 100%;
    background-color: black;
    font-family: 'Nunito Sans', sans-serif;

    color: white;
    font-size: 16px;
}

.container{
    width: 750px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 75px;
}
.logo img{
    margin-bottom: 20px;
}

h1{
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
}
p{
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 26px;
    display: block;
    margin-bottom: 20px;
    opacity: .8;
}
strong{
    font-weight: 700;
    opacity: 1;
}

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
}
.icons a{
    margin: 0 15px;
}
.icons a svg{
    width: 28px;
    height: 28px;
    fill: white;
}
span{
    font-size: 10px;
    font-weight: 300;
    opacity: .3;
    display: block;
    margin-top: 40px;
    letter-spacing: 1px;
}