@import url('https://fonts.googleapis.com/css2?family=Outfit&family=Poppins:wght@300;400;600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
:root{
    --Soft-blue: hsl(215, 51%, 70%);
    --Cyan: hsl(178, 100%, 50%);
    --Very-dark-blue-mainBG: hsl(217, 54%, 11%);
    --Very-dark-blue-cardBG: hsl(216, 50%, 16%);
    --Very-dark-blue-line: hsl(215, 32%, 27%);
    --White: hsl(0, 0%, 100%);
}
body{
    /* font-size: 18px; */
    font-family: "Outfit", sans-serif;
    font-weight: weight;
    background-color: var(--Very-dark-blue-mainBG);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--White);
}
.card{
    
    background-color: var(--Very-dark-blue-cardBG);
    border-radius: 15px;
    width: 275px;
    padding: 1.5rem;
}
.image{
    position: relative;
}
.image div{
    position: absolute;
    background-color:hsl(178, 100%, 50%, 60%) ;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.image div:hover{
    opacity: 1;
    cursor: pointer;
    border-radius: 10px;
}
.image div img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mainimage{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
h3{
    margin-top: 1.5rem;
    font-size: 20px;
    font-weight: 600;
}
footer{
    position: absolute;
    margin-top: 50px;
}
.descr{
    margin: 0.6rem 0 1rem 0;
    color: var(--Soft-blue);
    line-height: 28px;
    font-weight: 300;
    font-size: 14px;

}
.price-day{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--Soft-blue);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.price{
    display: flex;
    align-items: center;
    color: var(--Cyan);
    font-size: 14px;
    letter-spacing: 1px;
}
.price img{
    margin-right: 5px;
}
.day{
    display: flex;
    align-items: center;
    color: var(--Soft-blue);
    font-size: 14px;
}
.day img{
    margin-right: 5px;
}
.creat{
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--Soft-blue);

}
.avatar{
    border: 1px solid white;
    border-radius: 50px;
    margin-right: 1rem;
    width: 30px;
}
span{
    color: white;
    margin-left: 5px;
}
.mainimage, h3, span{
    cursor: pointer;
}
h3:hover, span:hover{
    color: var(--Cyan);

}