.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(217, 54%, 11%);
}

.card {
    background-color: hsl(216, 50%, 16%);
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-family: "Outfit", sans-serif;
}

.nft-img {
       width: 100%;
       border-radius: 10px;
       margin-bottom: 20px;
}

.card-title {
    color: hsl(0, 0%, 100%);
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

.card-description {
    color: hsl(215, 32%, 27%);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: hsl(178, 100%, 50%);
    font-weight: bold;
}

.time {
    color: hsl(215, 32%, 27%);
    font-size: 0.85rem;
}

.divider {
    border: 1px solid hsl(215, 32%, 27%);
    margin: 20px 0;
}

.creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid hsl(0, 0%, 100%);
}

a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}