*{
    font-family: 'Verdana', sans-serif;
}

body {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.progress-container {
        width: 100%;
        background-color: #000;
        border-radius: 50px;
    }

    .progress-bar {
        width: 40%;
        height: 15px;
        background-color: red;
        text-align: center;
        line-height: 30px;
        color: #fff;
        border-radius: 50px;
    }

    .circle-red {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, red, white);
        filter: blur(20px);
        position: absolute;
        z-index: -1;
        top: 20%;
        left: -10%;
    }

    .circle-blue {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, #1c60b8, white);
        filter: blur(20px);
        position: absolute;
        z-index: -1;
        top: 45%;
        right: -10%;
    }

    .name{
        font-weight: bold; font-size: 25px;
    }

    .title{
        margin-top: 20px; letter-spacing: 5px;
    }

    .profile-picture{
        width: 164px;
		height: 164px;
		border-radius: 800px;
		object-fit: cover;
    }

    .profile-picture-container{
        width: 180px; height: 180px; border-radius: 90px; border:2px solid black; justify-content: center; display: flex; align-items: center;
    }

    .section-title{
        font-weight: bold; font-size: 25px;
    }

    .mt-25{
        margin-top:25px
    }

    .w-50{
        width: 50%;
	}