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

body {
    background-image: url('assets/happe.jpg');
    background-repeat: repeat;
    background-size: 500px;
    background-attachment: fixed;
    background-color: #2d0c4b;
    font-family: 'Helvetica Neue', 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: #7fd0e2;
}

h2 {
    font-size: 2rem;
    color: #d133d1;
}

h3 {
    font-size: 1.5rem;
    color: #28ffdc;
}

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 {
    transform: scale(1.1);
    color: #ffc107;
}

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