:root {
    --text-color: #ffffff;
    --background-color: #000000;
    --light-grey-text: #aaaaaa;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 16px;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    body {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    body {
        padding-left: 32px;
        padding-right: 32px;
    }
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    overflow-wrap: break-word;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    h2 {
        font-size: 1.875rem;
    }
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

a:visited {
    color: var(--text-color);
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    text-align: left;
    line-height: 1.625;
    width: 100%;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.back-link {
    margin-top: 2.5rem;
    font-size: 1.125rem;
}

.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    font-size: 1.2em;
    padding: 5px 0;
}

.footer {
    margin-top: auto;
    text-align: center;
    font-size: 0.8em;
    color: var(--light-grey-text);
    padding-top: 20px;
    display: flex;
    gap: 15px;
}

.footer a {
    color: var(--light-grey-text);
}