@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;900&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
    background-color: #222;
}

.container {
    display: flex;
    gap: 10px;
}

.progess-group {
    background-color: #535c68;
    width: 300px;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.circular-progress {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.5s;
}

.circular-progress::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #535c68;
}

.course-value {
    position: relative;
    color: #eb4d4b;
    font-size: 35px;
    font-weight: 500;
}

.text {
    margin-top: 18px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
}