html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

html, 
body {
    height: 100%;
}

body {
    position: relative;
    margin: 0;
    background: rgb(156,155,155);
    background: radial-gradient(circle, rgba(156,155,155,1) 0%, rgba(111,111,110,1) 100%);

    display: flex;
    align-items: center;
    justify-content: center;
}

#logo-container {
    display: block;
    margin: auto;
    width: 75vw;
    height: 50vh;
    max-width: 549px;
    max-height: 54vw;
    position: relative;
    background: url(../logo.png) no-repeat center center;
    background-size: contain;
}

#logo {
    margin: auto;
    display: block;
    width: 50vw;
    max-width: 549px;
    height: auto;
}

#socials {
    list-style: none;
    padding: 0;
    margin-top: 1em;
    text-align: center;
    color: #ffffff;
    font-size: 24pt;
}

#socials li {
    list-style: none;
    display: inline-block;
}

#socials li + li {
    margin-left: 1em;
}

#socials a {
    color: inherit;
}

#socials a i {
    cursor: hand;
}

#socials a:hover {
    color: #ba1621;
}

#links {
    max-width: calc(300px + 2em);
    margin: 0 auto;
    padding: 2em 1em 0;
}

#links a {
    display: inline-block;
	position: relative;
    width: 100%;
    text-align: center;
    padding: 0.5em 1em;
    background: #ffffff;
    border-radius: 3px;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2em;
}

#links a[disabled] {
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}

#links a .note {
	font-size: 0.8em;
	font-weight: normal;
	font-style: italic;
}

#links a .icon {
	position: absolute;
    line-height: 24px;
    top: 50%;
    margin-top: -12px;
    left: 10px;
}

#links li + li {
    margin-top: 0.5em;
}

#links #social-links {
    display: flex;
    margin: 0.5rem -0.25rem 0;
}

#links #social-links a {
    flex: 1;
    margin: 0 0.25rem;
}

@media screen and (max-height: 600px) {
    #logo-container {
        width: 30vw;
        height: 30vh;
    }

    #links a {
        padding: 0.25em 0.5em;
    }    
}