body {
    margin: 0;
    padding: 0;
    font-family: 'TT Norms', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Slightly off-white for text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    position: relative; /* To position social links inside the container */
    padding: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f5f5f5; /* Slightly less white for headings */
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #b0b0b0; /* Different shade for paragraph text */
}

a {
    color: #a8815b; /* Accent color */
    text-decoration: none;
    margin-right: 15px;
}

a:hover {
    text-decoration: underline;
}

footer.social-links {
    text-align: center;
}

footer.social-links img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* Makes icons visible on dark background */
}