*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.container
{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color:hsl(217, 54%, 11%) ;
    flex-direction: column;
    
}
.card-container
{
    width:260px;
    background-color: hsl(216, 50%, 16%);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
    padding: 20px;
    flex-direction: column;
    gap: 15px;

    
}
.image-container
{
    height: 200%;
    width: 100%;
}
.image-container >img
{
    height: 200px;
    width: 100%;
    border-radius: 10px;
}
h1
{
    color: hsl(0, 0%, 100%);
    font-size: 18px;
    font-family: 'Outfit';
    font-weight: 300,400,600;
}
p
{
    font-weight: 700;
    color:hsl(0, 0%, 100%) ;
    font-size: 12px;
    font-family: 'outfit';
    font-weight: lighter;
}

.icon-ethereum >span
{
color:hsl(178, 100%, 50%) ;
font-family: 'outfit';
font-weight: 700;
font-size: 11px;
}
.icon-ethereum >img
{
    height: 15  px;
    width: 10px;
}
.icon-clock >span
{
    color:hsl(215, 51%, 70%) ;
    font-size: 12px;
    font-family: 'outfit';
}
.icon-clock >img
{
    height: 15px;
    width: 15px;
}
.icon-container
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.icon-ethereum, .icon-clock {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-avatar
{
    width:100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid hsl(215, 32%, 27%);
    padding-top: 15px;
    
}

.icon-avatar >img
{
    height: 20px;
    width: 20px;
    
}

.author >span
{
    color: hsl(0, 0%, 100%) ;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Outfit';
    color:  hsl(215, 51%, 70%) ;
}
.author >strong
{
    color:hsl(0, 0%, 100%);
    font-weight: 300;
    font-size: 12px;
    margin-left: 3px;
    font-family: 'outfit';
}
@media screen and (min-width:768px) 
{
.container
    {
        height: 100vh;
        width: 100%;
    }
}
    

    
