body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Background image URL */
    background-size: cover; /* Cover entire viewport */
    background-position: center; /* Center the background */
    background-repeat: no-repeat; /* No repeat */
    background-color: #e0f7fa; /* Example: Alice Blue for background */
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    text-align: center;
    background-color: #ffffff;  /* Example: Semi-transparent White for container */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    padding: 50px;
    border-radius: 10px;
    width: 80%; /* Occupy 80% of viewport width */
    max-width: 600px; /* Limit maximum width */
}

.content {
    color: #333; /* Dark text color */
}

h1 {
    font-size: 48px;
    margin-bottom: 20px; /* Increased margin */
}

img {
    max-width: 70%;
    height: auto;
    margin-top: 20px;
    opacity: 0.7; /* Adjust opacity for transparency */
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Light gray background */
    border-radius: 5px;
    margin-bottom: 20px;
}

.progress {
    width: 0%; /* Initial width set to 0% */
    height: 20px;
    background-color: #333; /* Dark progress color */
    border-radius: 5px;
    animation: progress-animation 3s ease forwards;
}




@keyframes progress-animation {
    0% { width: 0; } /* Start from 0% width */
    50% { width: 50%; } /* Reach 50% width */
    100% { width: 50%; } /* Stay at 50% width */
}

.social-media {
    margin-top: 30px;
}

.social-media a {
    margin: 0 15px;
    color: #333; /* Dark icon color */
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    border-radius: 50%;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.social-icon:hover {
    transform: scale(1.1);
}
