@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    margin: 0;
    background: #000;
    font-family: "Noto Sans JP", sans-serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
}

.release-wrapper {
    overflow: hidden;
    border-radius: 8px;
    max-width: 320px;
}

.release-text {
    background: #222;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 16px;
    gap: 8px
}

.release-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.release-name {
    font-weight: bold;
    text-align: center;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #bbb;
}

.bg {
    width: 120vw;
    height: 120vh;
    background-size: cover;
    position: fixed;
    z-index: -3;
    filter: blur(16px);
    translate: -10vw -10vh;
    opacity: .6;
    background-position: center;
}

.cover-art {
    width: 320px;
    height: 320px;
    background-size: cover;
}

.release-details,
#choose {
    font-size: 14px;
}

.link {
    background: #fff;
    display: flex;
    padding: 16px;
    justify-content: space-between;
    color: #000;
    transition: background .15s linear;
}

.link:hover,
button:hover {
    background: #eee;
}

.link:active,
button:active {
    background: #ddd;
}

a.service-anchor {
    text-decoration: none;
}

.service-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.service-logo {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-size: cover;
}

button {
    min-width: 64px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    outline: none;
    transition: background .15s linear;
}

@media screen and (max-width: 915px) {
    .release-wrapper {
        margin: 16px 0;
    }
}