* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: black;
    color: white;
    font-family: Poppins, sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 700px;
    margin: auto;
    position: relative;
    padding-top: 3em;
}

.container .mid, .container .top {
    z-index: 2;
    position: relative;
}

.container .mid {
    margin-top: 25%;
}

.container .body {
    width: 100%;
    height: 100%;
}

.background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

ul li {
    padding: 0.2em 1em
}

h1 {
    font-size: 3em;
    letter-spacing: 0.15em;
}

h2 {
    font-size: 1.2em;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bfbfbf;
}

