* {
    box-sizing: border-box;
}

a {
    color: #FFF8DC;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffb200;
    color: black;
    font-family: 'Consolas', monospace;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

.content {
    flex: 1;
    padding-bottom: 100px;
}

.logo-line {
    display: flex;
    font-size: 1.4em;
    white-space: pre;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

h3 {
    font-size: 1em;
    margin-bottom: 6.6px;
    font-weight: bold;
}

p {
    line-height: 1.2;
    margin-bottom: 5px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.footer {
    text-align: left;
    padding: 10px 0;
}

.footer .socials {
    margin-bottom: 10px;
}

.footer .social-link {
    margin: 0 10px;
}