* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #141414;
    color: #FFFFFF; /* all text white */
    font-family: 'Lilex', sans-serif;
    font-size: 12px;
    line-height: 1.6;
}

.container {
    max-width: 530px; /* updated max-width */
    margin: 0 auto;
    padding: 20px;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

h1,
h2 {
    margin-bottom: 10px;
    font-weight: 900; /* extra bold */
    font-family: 'Science Gothic', sans-serif; /* header font */
    text-align: center;
}

p {
    margin-bottom: 10px;
    text-align: center;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #FFFFFF;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #cf510d;
}

.copyright {
    margin-top: 40px;
    font-size: 10px;
    color: #222222; /* copyright color */
    text-align: center;
}
