body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #000;
    border-bottom: 2px solid #444;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #e0e0e0;
}

main {
    flex: 1;
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #000;
    border-top: 2px solid #444;
}

.social-buttons a {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-buttons a.facebook { background-color: #3b5998; }
.social-buttons a.instagram { background-color: #E1306C; }
.social-buttons a.tiktok { background-color: #010101; }

.social-buttons a:hover {
    filter: brightness(1.2);
}
