body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #002366; /* Dark Blue */
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.background-image {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px; /* Adjust the width as needed */
    height: 400px;
    background: url('/img/nss_brand.png') no-repeat center center/cover;
    opacity: 0.6; /* Adjust the opacity as needed */
    z-index: 0;
}
.content {
    position: relative;
    z-index: 2;
}
h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 8px 0;
    animation: fadeInDown 1s ease-in-out;
}
p {
    font-size: 18px;
    margin: 16px 0;
    animation: fadeInUp 1s ease-in-out;
}
.link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #002366; /* Dark Blue */
    text-decoration: none;
    background: #FFA500; /* Gold */
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    animation: fadeInUp 1s ease-in-out;
}
.ic-launch {
    margin-left: 10.5px;
    width: 21px;
    height: 20px;
}
.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #FFA500; /* Gold */
    animation: fadeInUp 1s ease-in-out;
}
.progress-container {
    width: 80%;
    background-color: #ddd;
    border-radius: 25px;
    overflow: hidden;
    margin: 20px auto;
    animation: fadeInUp 1s ease-in-out;
    position: relative;
}
.progress-bar {
    height: 30px;
    background-color: green;
    width: 0;
    border-radius: 25px;
    text-align: center;
    line-height: 30px;
    color: #002366; /* Dark Blue */
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
}
.progress-bar-text {
    position: absolute;
    left: 30px;
    top: 0;
    line-height: 30px;
    color: #002366; /* Dark Blue */
    font-weight: bold;
    z-index: 1;
}
.progress-percentage {
    position: absolute;
    right: 10px;
    top: 0;
    height: 30px;
    line-height: 30px;
    color: #002366; /* Dark Blue */
    font-weight: bold;
    z-index: 2;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}