body {
    font-family: sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.progress {
    height: 100%;
    background-color: #007bff;
    border-radius: 5px;
    animation: progress 3s linear infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.social-media {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-media li {
    display: inline-block;
    margin-right: 20px;
}

.social-media a {
    color: #007bff;
    text-decoration: none;
}

.social-media i {
    font-size: 2em;
    vertical-align: middle;
}