#discography {
    margin-left: 30px;
}


#discography .card:hover {
    scale: 1.02;
    box-shadow: var(--shadow);
}

#discography h5 {
    color: white;
    text-align: center;
    margin-top: 5px;
}

#discography .logo-icon {
    width: 100%;
}

#discography .flex-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns */
    width: 100vw;
    /* Cards take full screen width */
    max-width: 100%;
    /* Prevents overflow */
    margin: 0 auto;
}

#discography .card {
    width: 80%;
    /* Cards take almost full width of their column */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 5px;
    /* Adds spacing inside the card */
    margin-left: 15px;
}

#discography .card img {
    background: transparent;
}


#discography .card i {
    color: rgb(229 81 26);
    word-spacing: 0.05cm;
}

#discography .card span {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    color: white;
}


@media only screen and (max-width: 600px) {
    #discography h5 {
        font-size: small;
    }

}