﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: white;
}
header {
    padding: 60px 20px;
    text-align: center;
    background: #FBB117;
    color: black;
}
nav {
    display: flex;
    justify-content: center;
    background: #000;
    position: sticky;
    top: 0;
}

    nav a {
        color: white;
        padding: 15px 20px;
        text-decoration: none;
    }

        nav a:hover {
            background: #FBB117;
            color: black;
        }
h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

    ul li {
        background: #FBB117;
        color: black;
        margin: 10px 0;
        padding: 10px;
        border-radius: 8px;
    }

img {
    width: 100%;
    max-width:400x;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}
.tlacitko img {
    width: 150px;
    transition: 0.3s;
    margin: 20px 0;
}

    .tlacitko img:hover {
        transform: scale(1.15);
    }

footer {
    text-align: center;
    padding: 30px;
    background: #000;
}
/*Nuda v noci 03:48 3.5.2024*/