html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #ff9393;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
nav {
    width: 100%;
    background-color: #ff9393;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Farebný text a odkazy */
.rgb-text {
    animation: rgbBlink 3s linear infinite;
    font-weight: bold;
    text-decoration: none;
}

/* Špeciálne pre nadpis */
nav h2.rgb-text {
    font-size: 24px;
    margin: 0;
}

/* Špeciálne pre tlačidlá */
.nav-buttons a.rgb-text {
    margin-left: 20px;
    font-size: 16px;
}

/* RGB animácia */
@keyframes rgbBlink {
    0%   { color: rgb(255, 0, 0); }
    25%  { color: rgb(0, 140, 0); }
    50%  { color: rgb(0, 0, 255); }
    75%  { color: rgb(0, 0, 0); }
    100% { color: rgb(255, 0, 255); }
}

/* Obsah pod navbarom */
.container {
    flex: 1;
    padding-top: 100px;
    text-align: center;
}

h1 {
    margin-bottom: 40px;
    color: #333;
}

.download-button {
    display: block;
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    background-color: #a90000;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transition: background-color 0.3s, transform 0.2s;
}

.download-button:hover {
    background-color: #7c0303;
    transform: scale(1.03);
}

.tmavofialova {
    color: rgb(180, 0, 172);
}

/* Footer */
footer {
    background-color: #ff9393;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    width: 98,50%;
}
