:root {
--site-pink:#d133d1;
--site-teal:#28ffdc;
--site-purple:#8533d1;
}

@font-face {
    font-family: milk;
    src: url(assets/tnmfont.otf);
}

body {
    background-image: url('assets/happe.png');
    background-color: #800080;
    background-repeat: repeat;
    background-size: 500px;
    background-attachment: fixed;
    font-family: milk, sans-serif;
    color: #fff;
    animation: backgroundScroll 60s linear infinite;
    text-align: center;
}

@keyframes backgroundScroll {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.glass-container {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 30px;
    margin: 50px auto;
    max-width: 800px;
}

.quote {
font-style:italic;
text-align:center;
font-size:60px;
}

.content {
    text-align: center;
}

h1, h2, h3 {
    font-family: milk;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h1 {
    font-size: 5rem;
    color: var(--site-purple);
}

h2 {
    font-size: 2rem;
    color: var(--site-pink);
}

h3 {
    font-size: 1.5rem;
    color: var(--site-teal);
}

a.nav-link {
    font-family: milk;
    text-align: center;
    display: block;
    margin: 15px auto;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.nav-link:hover, a.nav-link:focus {
    transform: scale(1.1);
    color: #ffc107;
}

video, img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.music-players {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.song {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px) saturate(150%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.2);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.song p {
    font-family: milk;
    font-size: 1.5rem;
    color: #f0f0f0;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.song audio {
    width: 100%;
    max-width: 600px;
}

.song a {
    font-family: milk, sans-serif;
    font-size: 1rem;
    color: #7fd0e2;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.song a:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    transform: scale(1.05);
}

#status {
font-size:2vw;
}
