body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    position: relative;
    overflow-y: auto; 
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 40px 20px; 
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .artwork, .label {
        width: 220px;
    }
    
    .links a {
        padding: 0.7rem 1.1rem;
        font-size: 14px;
        min-width: 200px;
    }

    .links {
        gap: 0.7rem;
    }
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.9rem 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('saybackground.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    filter: blur(10px);
    z-index: -1;
}

.label {
    display: block;
    margin: 0 auto 1px auto;
    width: 300px;
    height: auto;
}   
.artwork {
    display: block;
    margin: 0 auto 20px auto;
    width: 300px;
    height: auto;
}

.container {
    background: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}