body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

p {
    color: #333;
    line-height: 1.6;
}

div.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a {
    color: #007bff;
    text-decoration: none;
}

div.socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

div.social-icon {
    margin: 0 10px;
}

div.social-icon a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
}

div.social-icon a:hover {
    color: #007bff;
}

div.social-icon i {
    transition: color 0.3s ease;
}