        * {
            box-sizing: border-box;
            font-family: "Consolas", "Courier New", monospace;
            color: white;
        }
        body {
            margin: 0;
            padding: 0;
            background-color: #00133A;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            color: #fff;
        }

        /* Pruh nahoře */
        .top-bar {
            background-color: #000E2B;
            width: 100%;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            opacity: 0.95;
        }
        .top-bar h1 {
            font-size: 50px;
            margin: 0;
            box-sizing: border-box;
            color: white;
            padding-top: 30px;
        }
        .top-bar p {
            font-size: 22px;
            margin-top: 10px;
            box-sizing: border-box;
            color: yellow;
            font-family: "Courier New", monospace;
        }
        h1 {
            font-size: 42px;
            color: #000E2B;
            text-align: center;
        }
        .btn-start, .btn-info {
            background-color: #BFD5FF; /* #002773; */
            color: #000E2B;
            padding: 15px 30px;
            font-size: 18px;
            border: 2px dashed #000E2B;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
            width: 100%;
            max-width: 300px;
        }
        .btn-start:hover, .btn-info:hover {
            background-color: #000E2B;
            border: 2px dashed #BFD5FF;
            font-weight: bold;
            font-size: 20px;
            color: #BFD5FF;
        }
        .container {
            background-color: #BFD5FF; /* #002773; #99004A*/
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            text-align: center;
            margin: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0.9;

        }
        .container:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            opacity: 1;
        }
        .main-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            height: 100%;
        }
        .container p {
            font-size: 18px;
            color: #000E2B;
        }

        /* Pruh dole */
        .bottom-bar {
            background-color: #000E2B;
            width: 100%;
            padding: 10px 0;
            text-align: center;
            color: white;
            position: fixed;
            bottom: 0;
            left: 0;
            font-size: 16px;
            opacity: 0.6;
        }
        a {
            color: white;
        }
        
        /*Ty nové e-maily v top-bar*/
        .email-bar {
            background: #00133A;
            padding: 10px 15px;
            display: flex; /* Zarovnání do řádku */
            align-items: center; /* Vertikální zarovnání */
            justify-content: flex-start; /* Ikona vlevo, text vedle */
            border-radius: 8px;
            box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
            width: 80%;
            max-width: 600px;
            margin: 0 auto;
        }
        .email-icon {
            margin-right: 10px; /* Mezera mezi ikonou a textem */
            font-size: 150%;
            color: #BFD5FF;
        }
        .email-text {
            white-space: nowrap; /* Zabrání zalomení textu */
            overflow: hidden;
            text-overflow: ellipsis; /* Pokud je text moc dlouhý, zobrazí "..." */
            font-size: 16px;
            font-weight: bold;
            color: #BFD5FF;
            flex-grow: 1; /* Zabírá zbytek místa */
        }