body {
    font-family: Arial, sans-serif;
    /*background-color: #121212;*/
    background-color: black;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* LOGO animācija */
.fade-in-img {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.05s;
}

/* Virsraksts (ja izmantosi h1 vēlāk) */
h1 {
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
    color: #666666;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
    
}



/* Pogas konteineris */
.links {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Pogas ar viļņveida aizturi */
.links a {
    display: block;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: #1e1e1e;
    color: #bbbbbb;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: background 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.links a:nth-child(1) { animation-delay: 0.2s; }
.links a:nth-child(2) { animation-delay: 0.3s; }
.links a:nth-child(3) { animation-delay: 0.4s; }
.links a:nth-child(4) { animation-delay: 0.5s; }
.links a:nth-child(5) { animation-delay: 0.6s; }
.links a:nth-child(6) { animation-delay: 0.7s; }
.links a:nth-child(7) { animation-delay: 0.8s; }


.links a:hover {
    background: #333333;
    color: #ffffff;
}

/* Footer animācija */
footer.copyright {
    margin-top: 80px;
    font-size: 14px;
    color: #666666;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

/* Atslēgas kadri – fadeInUp animācija */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}