   /* Resetování marginu a paddingu pro správné zobrazení */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @font-face {
        font-family: 'Audiowide';
        src: url('fonts/Audiowide-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        }

        body {
            font-family: 'Audiowide', sans-serif;
            //visibility: hidden; /* Skryje obsah při načítání */
            background-image: url("pics/background.jpg");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #e0e0e0; /* Světle šedý text */
            height: 100vh; /* Umožní využít celou výšku okna */
            display: flex;
            flex-direction: column;
        }

        header {
            text-align: center;
            padding: 50px;
            background: rgba(0, 0, 0, 0.7); /* Polotransparentní pozadí pro čitelnost */
            margin-bottom: 30px;
        }

        h1 {
            font-size: 3em;
            color: #00bcd4; /* Modrozelená pro futuristický nádech */
        }

        h2 {
            font-size: 2em;
            color: #607d8b; //#087E99;  /* Šedá modrá */
        }

        section {
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
            width: 80%;
            max-width: 1000px;
        }

        section img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.2em;
            line-height: 1.6;
            color: #b0bec5; /* Světle šedá pro texty */
        }

        footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.7);
            position: relative;
            bottom: 0;
            width: 100%;
            color: #b0bec5; /* Světle šedá pro texty v patičce */
        }