/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    height: 100vh;
    background-color: #0C0C0C;
    font-family: "Termina", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #5c5c5c;
}

/* Layout */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 48px 24px;
    text-align: center;
}

/* Logos */

.top-logo {
    margin-top: 12px;
}

.bottom-logo {
    margin-bottom: 12px;
}

/* Content */
.content {
    max-width: 320px;
}

.intro {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* Blocks */
.block {
    margin-bottom: 36px;
}

.title {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: underline;
    margin-bottom: 12px;
}

.title:hover {
    opacity: 0.8;
}

.block p {
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
}