body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-gif {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%; 
    background-image: url('../videos/dj-dachshund-background.gif');
    background-size: cover;
    background-repeat: repeat;
    filter: blur(8px);
    z-index: 0;
}

.background-noise-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../videos/noise.gif');
    background-size: cover;
    opacity: 0.0;
    pointer-events: none;
    z-index: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    pointer-events: none;
    z-index: 2;
}

.profile-container {
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    border-radius: 50%;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 0px solid #333;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.5s ease-out;
}

.profile-img.gelatine-animation,
h1.gelatine-animation,
p.gelatine-animation {
    animation: gelatine 0.5s ease-out;
}

h1 {
    color: #fff;
    margin: 5px 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.75px;
    cursor: pointer;
    transition: transform 0.5s ease-out;
}

p {
    color: #9c9c9c;
    margin: 0px 0;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.5s ease-out;
}

.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease, transform 0.5s ease-out;
}

.links .icon {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes gelatine {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.spacer {
    height: 20px;
}

.spotify-player {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 999; 
}