:root {
    --bg-dark-grey: #141414;
    --fg-white: #f5f5f7;
    --text-muted: #a1a1a6;
    --link-hover: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0 30px;
    margin: 10vh auto;
    max-width: 600px;
    background-color: var(--bg-dark-grey);
    color: var(--fg-white);
    
    font-family: 
        -apple-system, BlinkMacSystemFont, "Segoe UI", 
        Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#maincontent {
    display: flex;
    flex-direction: column;
}

.logo-wrapper {
    margin-bottom: 40px;
}

.logo {
    max-width: 75px;
    height: auto;
    display: block;
}

h1 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer {
    margin-top: 30px;
}

small {
    color: #555555;
    font-size: 0.8rem;
}