/* 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;
    font-family: 'Roboto';
	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;
}

html,body{
    position:absolute;
    height:100%;
    left:0;
    top:0;
    width:100%;
}

body{
    background: black;
}

h4{
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

#primary{
    max-width: 390px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.43);
    padding: 30px 30px 0;
    text-align: center;
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}
.logo{
    margin-bottom: 10px;
}

#bg{
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

#video-bg{
    position: fixed;
    opacity: 0.3;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.interface{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}

.dots{
    position: absolute;
    width: 100%;
    top: calc(50% + 4px);
    color: white;
    font-size: 31px;
    letter-spacing: 3px;
}

.icon{
    fill: white;
    position: absolute;
    bottom: 0;
    left: calc(50% + 30px);
    width: 30px;
}

.icon-discord{
    fill:#7289DA
}

.icon-twitter{
    fill:#1DA1F2;
}

.message{
    color: white;
    max-width: 350px;
    margin: 20px auto;
    line-height: 23px;
    font-size: 14px;
}

.box {
    width: 50%;
    position: relative;
}

.box-twitter h4{
    color: #1DA1F2;
}

.box-discord h4{
    color: #7289DA;
}

.box img {
    border-radius: 100px;
    width: 100px;
    border: 4px solid #ffffff;
}

.footer{
    margin-top: 40px;
    margin-left: -30px;
    background: #00000059;
    margin-right: -30px;
    padding: 5px 30px 30px;
}

.btn-validate{
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: #8835c7;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #641a9d;
    display: block;
    width: 100px;
    margin: 0 auto;
}