.card {
    color: white;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    width: 290px;
    margin: 5px;
}

.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    align-content: stretch;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.nft {
    user-select: none;
    background: linear-gradient(0deg, #26282f 0%, rgb(39, 43, 52) 100%);
    box-shadow: 0 0 20px -15px #00000088;
    border-radius: 0.7rem;

    overflow: hidden;
}

.nft hr {
    width: 100%;
    max-width: 100% !important;
    border: none;
    border-bottom: 2px solid #decc91;
    margin: 15px 0 15px 0;
}

.nft ins {
    text-decoration: none;
    color: #ffe9a3;
}

.nft .main {
    display: flex;
    flex-direction: column;
    padding: 0 1rem 1rem 1rem;
}

.nft .main .tokenImage {
    border-radius: 0.5rem;
    max-width: 100%;
    object-fit: cover;
}

.nft .main .description {
    margin: 0.5rem 0;
    color: #8c8c8c;
    text-align: justify;
}

.nft .main .tokenInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft .main .tokenInfo .price {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
}
.nft .main .tokenInfo .price :hover{
    color: #ffe9a3;
}

.nft .main .tokenInfo .price ins {

    margin-left: 0.5rem;
}

.nft .main .tokenInfo .duration {
    display: flex;
    align-items: center;
    color: #02cc80;
    background-color: #02cc8012;
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 12px;
}

.nft .main .tokenInfo .duration ins {
    margin: 0.5rem;
    margin-bottom: 0.4rem;
}

.nft .main .creator {
    display: flex;
    align-items: center;
}

.nft .main .creator ins {
    color: #8c8c8c;
    text-decoration: none;
}

.nft .main .creator .wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ffffff22;
    padding: 0.3rem;
    margin: 0;
    margin-left: 0.5rem;
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px #000000aa;
}

.nft .main .creator .wrapper img {
    border-radius: 100%;
    border: 1px solid #ffffff22;
    width: 2rem;
    height: 2rem;

    margin: 0;
}

.nft ::before {
    position: fixed;
    content: "";

    top: -10%;
    left: -100%;

    height: 60rem;

}


.tokenInfo p , .creator p {
    margin-bottom: 0;
}
.album-title{
    margin: 35px 0 5px 0;
    color:#ffe9a3;
}