* {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
}

.section {
    min-height: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 1rem;
}

.section-off {
    background-color: #111;
    justify-content: flex-start;
}

.lead {
    color: #41F55C;
    font-size: 6em;
    margin-bottom: 7px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.lead::before {
    position: absolute;
    content: "";
    display: block;
    left: 5%;
    width: 90%;
    bottom: 15%;
    height: 0.75rem;
    z-index: -1;
    background: #172419;
}

.copy {
    max-width: 48rem;
    width: 100%;
    text-align: center;
}

a, a:visited {
    text-decoration: none;
    color: #41F55C;
}

a:hover {
    color: #DC3264;
}

.bug {
    position: fixed;
    left: 0.5rem;
    bottom: 0.75rem;
    color: #fff;
    font-size: 0.75em;
}

.socials {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -1rem;
    font-size: 2rem;
}
.socials > * {
    margin-right: 1rem;
    display: block;
}

