body {
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: #fff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin: 0;
    padding: 0;
    animation: fadeInTitle 2s ease-out, slideIn 2s ease-out;
}

@keyframes fadeInTitle {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(-50px); }
    100% { transform: translateY(0); }
}

.about-section, .content-section, .back-section, .links-section {
    margin-top: 2rem;
    animation: fadeIn 3s ease-out;
}

.archive-section {
    margin-top: 3rem;
}

.archive-section ul {
    list-style-type: none;
    padding: 0;
}

.archive-section li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.archive-section li:hover {
    background-color: #333;
    transform: translateX(10px);
}

.links-section button {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.links-section button:hover {
    background-color: #333;
    transform: translateY(-5px);
}

a {
    color: #00f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
