body {
    background-color: rgb(27, 24, 29);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-wrapper {
    padding: 12px;
    background-color: rgb(40, 36, 41);
    border-radius: 12px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
}

.canvas-container {
    display: block;
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 100px;
    overflow: hidden;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
}

#canvas {
    filter: blur(100px) saturate(60%) contrast(90%) hue-rotate(50deg) brightness(150%);
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}

.info {
    display: flex;
    gap: 12px;
}

.title {
    color: white;
    font-family: sans-serif;
    font-weight: 900;
    margin: 0;
    font-size: 20px;
}


.track {
    color: rgb(148, 148, 148);
    font-family: sans-serif;
    margin: 0;
    font-weight: 600;
}

.icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    vertical-align: middle;
    position: relative;
    top: 2px;
}