.disco{
    h1 {
        text-align: center;
        font-size: 3rem;
        color: var(--acc);
        margin-block-start: 1rem;
    }
    h2{
        text-align: initial;
        font-size: 2rem;
        margin-block-start: 0;
        color: var(--acc);
    }
}

.ReleaseCards{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;

    .Rcard{
        display: flex;
        flex: 1 1 15rem;
        min-width: 5rem;
        max-width: 20rem;
        flex-direction: column;
        background: oklch(1 0 0);
        border: oklch(0 0 0) solid 2px;
        border-radius: 1.8rem;

        >img{
            height: auto;
            border-radius: 1.6rem 1.6rem 0 0;
            border-block-end: black solid 2px;
        }
        h3{
            margin: 0.5rem 0.5rem 0 0.5rem;
        }

        .icons{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            gap: 1rem;
            a {
                padding: 0.8rem 0.8rem 0.2rem 0.8rem;
                margin-block-end: 0.4rem;
                border-radius: 67rem;
            }

            a:hover{
                background: oklch(0.739 0.014 17.473 / 0.3);
                transition: ease-in-out 120ms;
            }

            img {
                width: 2rem;
                height: auto;
                border: none;
            }
        }
    }
}