
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&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,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik';
}
:root{
    --Purple600: hsl(246, 80%, 60%);
    --Orange300-work:hsl(15, 100%, 70%);
    --Blue300-play: hsl(195, 74%, 62%);
    --Pink400-study: hsl(348, 100%, 68%);
    --Green400-exercise: hsl(145, 58%, 55%);
    --Purple700-social: hsl(264, 64%, 52%);
    --Yellow300-self-care: hsl(43, 84%, 65%);
    --Navy950: hsl(226, 43%, 10%);
    --Navy900: hsl(235, 46%, 20%);
    --Purple500: hsl(235, 45%, 61%);
    --Navy200: hsl(236, 82%, 83%);
}
body{
    background-color: var(--Navy950);
    color: white;
    padding: 65px 20px;
}
.img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid white 2px;
}
.img img{
    width: 100%;
}
.top-container{
    display: flex;
    column-gap: 20px;
    align-items: center;
    background: var(--Purple600);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    top:15px;
}
.user-container{
    margin-bottom: 40px;
}
.bottom-container{
    display: flex;
    justify-content: space-around;
    background: var(--Navy900);
    padding: 25px;
    border-radius: 20px;
    color: var(--Purple500);
    z-index: 2;
}
.weekly{
    color: white;
}
.time{
    margin: 5px;
    cursor: pointer;
}
.user-name{
    color: var(--Navy200);
}
.user-name h1{
    font-weight: 100;
    color: rgb(193, 193, 193);
    margin-top: 2px;
}
.title-container{
    display: flex;
    justify-content: space-between;
}
.container{
    position: relative;
}
.top-container-img-template{
    background: var(--Orange300-work);
    padding: 0px 10px 10px 0px;
    display: flex;
    justify-content: flex-end;
    border-radius: 10px;
}
.bottom-container-title-template{
    padding: 30px;
    background-color: var(--Navy900);
    border-radius: 10px;
    position: relative;
    bottom: 40px;
}
.time-state{
    display: flex;
    flex-direction: column;
}
.tittle{
    font-weight: bold;
    margin-bottom: 30px;
}
.time-box{
    font-size: 40px;
}
.previous{
    font-size: 14px;
    color: var(--Navy200);
    padding: 5px;
}
.play-img{
    background-color: var(--Blue300-play);
}
.study-img{
    background: var(--Pink400-study);
}
.exercise-img{
    background: var(--Green400-exercise);
    height: 81px;
}
.social-img{
    background-color: var(--Purple700-social);
    height: 80px;
}
.self-care{
    background-color: var(--Yellow300-self-care);
}
@media (min-width:600px) {
    body{
        margin-block: 50px;
        margin-inline: 50px;
    }
    section{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 20px;
    }
    .user-container{
        grid-row:1/3 ;
    }
    .top-container{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 80px;
        padding: 80px 20px 60px 20px;
    }
    .img{
        overflow: hidden;
    }
    .bottom-container{
        flex-direction: column;
        row-gap: 20px;
    }
    .user-name h1{
        font-size: 35px;
    }
    .time:hover{
        color: white;
    }
    
}