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

.navbar {
    background-color: #333;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.nav-logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    margin: 0 15px;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.nav-item a:hover {
    text-decoration: underline;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px auto 0 auto; /* Adjusted for the fixed navbar */
}

h1 {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.stats, .additional-info, .social-media {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 10px;
}

.stats div, .additional-info div, .social-media div {
    text-align: center;
}

.stats span:first-child, .additional-info span:first-child, .social-media span:first-child {
    display: block;
    font-weight: bold;
}

.stats span:last-child, .additional-info span:last-child, .social-media span:last-child {
    display: block;
    margin-top: 5px;
    font-size: 1.2em;
}

.social-media-item {
    text-align: center;
    width: 30%;
}

.social-media-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.social-media-item span {
    display: block;
    margin-bottom: 5px;
}

.progress {
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

/* Media query for mobile view */
@media (max-width: 600px) {
    .stats, .additional-info, .social-media {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
    }

    .stats div, .additional-info div, .social-media div {
        width: 100%; /* Make sure each stat takes full width */
        margin-bottom: 10px; /* Add some space between elements */
    }
}