:root {
  /* primary */
  --Soft-blue: hsl(215, 51%, 70%);
  --Cyan: hsl(178, 100%, 50%);

  --Very-dark-blue: hsl(217, 54%, 11%);
  --Very-dark-blue-card: hsl(216, 50%, 16%);
  --Very-dark-blue: hsl(215, 32%, 27%);
  --White: hsl(0, 0%, 100%);
}



*{
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--Very-dark-blue-card);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.card{
    background-color: var(--Very-dark-blue);
    width: 320px;
    padding: 2rem;
    box-shadow: 10rem 10rem 40rem rgba(0, 0, 0, 0.9);
    border-radius: 2rem;
}

.card-elements{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 2rem;
    overflow: hidden;
}

.image-wrapper img {
    display: block;
    border-radius: 2rem;
    width:100%;
     height:100%;
}

.image-wrapper::after {
    content: "";
    background: url(./images/icon-view.svg) center center no-repeat;
    background-color: rgba(0, 255, 247, 0.5); /* Optional overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-wrapper:hover::after {
    opacity: 1;
}

.card-details{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-details h2{
    color: var(--White);
    cursor: pointer;
}
.card-details h2:hover{
    color: var(--Cyan);
}


.card-details p{
    color: var(--Soft-blue);
    font-size: 18px;
}

.details-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.items{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.items .equil{
    color: var(--Cyan);
}

.items .day{
    color: var(--Soft-blue);
}

.user{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--Soft-blue);
}

hr{
    color: var(--Soft-blue);
}
.user-details img{
    border: 2px solid whi
    te;
}

.user p span{
    color: var(--White);
    cursor: pointer;
}

.user p span:hover{
    color:var(--Cyan) ;
}
