@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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&family=Outfit:wght@100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'outfit';
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: hsl(215, 51%, 70%);
    background-color: hsl(217, 54%, 11%);
    width: 100vw;
    height: 100vh;
}

.container{
    background-color: hsl(216, 50%, 16%);
    width: 350px;
    border-radius: 5%;
}

.image{
    position: relative;
}

.image img{
    width: 350px;
    display: flex;
    justify-self: center;
    padding: 25px;
    border-radius: 10%;
}

.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .7s ease;
}

.bg-image:hover{
    opacity: 1;
    cursor: pointer;
}

.bg-image:active{
    opacity: 1;
    cursor: pointer;
}


.cDetail{
    width: 340px;
    padding:0 25px 35px;
}

.cDetail h2{
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    font-size: 20px;
}

.cDetail h2:hover{
    color:hsl(178, 100%, 50%) ;
    cursor: pointer;
}

.cDetail h2:active{
    color:hsl(178, 100%, 50%) ;
    cursor: pointer;
}

.cDetail p{
    font-weight: 300;
    padding: 20px 0;
}

.etDays-icon{
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.etIcon-rate{
    display: flex;
    position: relative;
    flex: 1;
}

.etIcon-rate img{
    position: absolute;
}

.etIcon-rate h3{
    position: absolute;
    left: 15px;
    font-size: 15px;
    font-weight: 600;
    color: hsl(178, 100%, 50%);
}

.days{
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    font-weight: 300;
    top: 8px;
}

.days img{
    position: absolute;
    left: 50px;
}

.days p{
    position: absolute;
    left: 70px;
    font-size: 15px;
    
}

.bottom{
    display: flex;
    align-items: center;
    margin-top: 40px;
    border-top: 0.5px solid hsl(215, 51%, 70%);
}

.bottom img{
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid white;
}

.bottom p{
    padding-left: 10px;
}

strong{
    color: white;
}

strong:hover{
    color:hsl(178, 100%, 50%) ;
    cursor: pointer;
}

strong:active{
    color:hsl(178, 100%, 50%) ;
    cursor: pointer;
}