:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7)
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative
}

a {
    color: #FFF;
    text-decoration: none
}

a:hover {
    text-shadow: 0pt 0pt .3em white, 0pt 0pt .3em #fff
}

.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary)
}

.back-link:hover {
    color: var(--text-color)
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600
}

html,
body {
    width: 100%;
    height: 100%
}

*,
*:before,
*:after {
    box-sizing: border-box
}
