@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#d360be, #1e6bd7);
}

.main{
    padding: 1em;
    border-radius: 8px;
    border: black solid 1.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #CFBAF0;
    gap: 1em;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; 
}

.timer-title{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: capitalize;
}

.main-container{
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: #8c66c9;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timer-heading{
    width: 100%;
    margin-bottom: 1em;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.progress-bar{
    height: 200px;
    width: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#c55ee7 0deg, #eae852 0deg 360deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside-circle{
    background: #8c66c9;
    border-radius: 50%;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.total-rep{
    background-color: rgb(168, 168, 255);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0.4em;
    bottom: 0.4em;
}

.timer-label{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

.remaining-time-text{
    font-size: 2.3rem;
    font-weight: 500;
    color: black;
}

.quote-container{
    width: 100%;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: #cf90bc;
    border-radius: 5px;
}

.q-heading{
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: bolder;
    color: #333;
    text-align: left;
}

.quote-text{
    font-family: 'Great Vibes', cursive;
    font-size: 0.8rem;
    color: #1e1d1d;
    text-align: left;
}

#quote-image{
    width: 3em;
    height: 3em;
    border-radius: 3px;
}

.action-btn-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-btn{
    padding: 8px;
    border: none;
    background: #2270ed;
    border-radius: 3px;
    color: #e8d4d4;
}

.action-btn:hover{
    background-color: #84a8e0;
    color: #1e1d1d;
}