.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column  ;
}

.card{  
    border-radius: 10px;
    padding: 20px;
    width: 270px;
    height: 500px;
    background: var(--Blue_900);
}

.card img{
    width: 100%;
    border-radius: 10px;
}

.card h4{
    font-size: 18px;
    color: var(--White);
    font-weight: 600;
}
.card p{
    font-size: 16px;
    font-weight: 300;
    color: var(--Blue_500);
}

.span{
    display: flex;
    justify-content: space-between;
}

.span p{
    font-size: 14px;
    font-weight: 400;
}

.ethereum{
    display: flex;
    align-items: center;
}
.ethereum p{
    color: var(--Cyan_400);
}
.ethereum .icon__ethereum{
    width: 10px;
    height: 16px;
    margin-right: 4px;
}

.clock{
    display: flex;
    align-items: center;
}
.clock .icon__clock{
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

.create__by{
    display: flex;
    align-items: center;
}
.create__by p{
    font-weight: 300;
    font-size: 14px;
}

.create__by .profile{
     width: 30px;
    height: 30px;
    margin-right: 12px;
}
.create__by span{
    color: var(--White);
}

hr{
    transform: scaleY(0.1);
    height:1px;
    color: var(--Blue_500);
}

.attribution{
    display: flex;
}

.attribution #frontend__mentor{
    border-radius: 50px;
    padding: 8px 12px;
    background: var(--Blue_900);
    color: var(--White);
}

.attribution #author__name{
    padding: 8px 12px;
    color: var(--White);
}

.attribution a{
    text-decoration: none;
    color: var(--Blue_500);
}


@media(max-width:375px){
    .attribution p{
        font-size: 14px;
    }
}