@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.background {
    position: relative;
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.blur {
    position: absolute;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3em);
    background-color: rgba(0,0,0,.40);
    opacity: 1;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Inter','Noto Sans JP',sans-serif;
}

.card {
    position: absolute;
    background-color: #fff;
    backdrop-filter: blur(2em);
    cursor: pointer;
    display: flex;
    max-width: 850px;
    width: 80%;
    border-radius: 8px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
}

.album-art {
    flex: 0 0 200px;
}

.metadata {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.metadata .title {
    color: #333;
    font-size: 22px;
}

.metadata .artist {
    color: #666;
}

.metadata i {
    margin-right: 4px;
}

footer {
    position: absolute;
    z-index: 100;
    bottom: 1em;
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 8px;
}

.info {
    padding: 4px 1.4em;
    cursor: pointer;
    color: #fff;
    border-radius: 100vh;
    border: 2px solid rgba(255,255,255,.4);
    box-shadow: 0 4px 1em rgba(23,23,23,.4);
    background-color: rgba(23,23,23,.4);
    transition: all .3s;
}

.info a {
    color: #fff;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

.info:hover {
    padding: 4px 2.2em;
}