@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #D2D2D2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

body a {
    text-decoration: none;
    color: #747474;
    margin-top: 20px;
}

.card {
    background-color: #F5F5F5;
    box-shadow: rgba(0, 0, 0, 0.199) 0px 5px 15px;
    color: #979797;
    text-align: center;
    padding: 40px;
    border-radius: 3px;
}

/***********************************/
.card-header h1 {
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 30px;
}

.card-header-buttons button {
    background-color: transparent;
    border: 1.5px solid rgb(202, 107, 123);
    color: rgb(202, 107, 123);
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 5px;
}

.card-header-buttons button:hover {
    background: linear-gradient(121deg, rgba(239,147,149,1) 3%, rgba(206,58,117,1) 56%);
    color: #fff;
}

/*******************************/
.card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.progress-bar {
    height: 180px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(rgba(206,58,117,1) 360deg, rgba(239,147,149,1) 0deg);
    border-radius: 50%;
    animation: pulse 3s infinite;
    transition: all ease;
}

.progress-bar-inner {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 50%;
}

.progress-bar-inner h2 {
    color: rgba(206,58,117,1);
    font-weight: 500;
    font-size: 35px;
  }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 147, 148, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(239, 147, 148, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 147, 148, 0);
    }
}

/****************************/
.card-footer{
    background: linear-gradient(121deg, rgba(239,147,149,1) 3%, rgba(206,58,117,1) 56%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.card-footer button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 100%;
    height: 100%;
}

