body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: scroll; /* Zajistit, že vertikální scroll bar bude vždy viditelný */
    overflow-x: hidden; /* Skrýt horizontální scroll bar, pokud není potřeba */
}

html, body {
    width: 100%;
}

header {
    background-size: cover;
    background-position: center;
    color: white;
    height: 320px;
    position: relative;
    text-align: center;
    animation: moveBackground 30s ease-in-out infinite; /* Efekt přejíždění obrázkem */
}

@keyframes moveBackground {
    0% { background-position: center; }
    30% { background-position: top; }
    60% { background-position: center; }
    90% { background-position: bottom; }
    100% { background-position: center; }
}

.header-top,
.header-bottom {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
}

.header-top {
    top: 0;
}

.header-bottom {
    bottom: 0;
}

.header-top h1,
.header-top .lang-switch {
    display: inline-block;
    vertical-align: middle;
}

.header-top h1 {
    margin: 0;
    margin-right: -100px;
    padding: 0;
    font-size: 24px;
}

.header-top .lang-switch {
    float: right;
    margin-right: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.lang-switch {
    display: flex;
    align-items: center;
}

.lang-switch a {
    margin: 0 5px;
}

.lang-switch img {
    width: 30px;
    height: 20px;
}

main {
    padding: 20px;
    text-align: center;
}

.tracks {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track {
    display: flex;
    margin: 10px 0;
    width: 100%;
    max-width: 600px;
}

.track img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    margin-right: 20px;
}

.track-info {
    text-align: left;
}

.track-info h3 {
    margin: 0;
}

.track .links {
    margin-top: 10px;
}

.track .links a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.track .links a:hover {
    background-color: #0056b3;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
