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

/* Body and Background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    text-align: center;
}

/* Header */
header {
    background-color: #ffb6c1; /* soft pink because I really like pink and purple :3 */
    padding: 50px 0;
}

header h1 {
    font-size: 3rem;
    color: #fff;
}

header p {
    font-size: 1.2rem;
    color: #fff;
}

/* About Section */
.about {
    margin: 40px 20px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Links Section (couldn't be bothered to rename it from .updates) */
.updates {
    margin: 40px 20px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.updates h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.updates p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #1e1e1e;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}
