        @font-face {
            font-family: 'kolon';
            src: url('fonts/kolon.OTF') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Bernadete';
            src: url('fonts/Bernadette.OTF') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'call';
            src: url('fonts/call.TTF') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Comic';
            src: url('fonts/comic_sans.TTF') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'sandoval';
            src: url('fonts/sandoval.TTF') format('truetype');
            font-weight: normal;
            font-style: normal;
        }





/* Reset a univerzální nastavení */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background-color: #121212;
    color: #e0e0e0;
    font-family: call, Arial, sans-serif;
    line-height: 1.6;
}

/* Kontejner vystředěný na třetinu */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Hlavní blok */
.container {
    width: 100%;
    max-width: 480px;
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Nadpisy */
h1, h2, h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Popisky */
label {
    display: block;
    margin-top: 16px;
    margin-bottom: 5px;
    color: #cccccc;
    font-weight: bold;
}

/* Formulář */
form {
    display: flex;
    flex-direction: column;
}

/* Pole */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #262626;
    color: #e0e0e0;
    font-size: 1em;
}

/* Zvýraznění aktivního pole */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus {
    border-color: #4CAF50;
    border-block: 1px;
    background-color: #2e2e2e;
    box-shadow: 0 0 20px 2px green;
    outline: none;
}

/* Tlačítko */
input[type="submit"],
button {
    margin-top: 25px;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover {
    background-color: #388e3c;
}

/* Sekce uvnitř */
.section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #292929;
    border-radius: 8px;
}
 div.bobik {
            width: !important;
            border-radius: 19px;
            border: 1px solid greenyellow;
            box-shadow: 0 0 20px 2px skyblue;
            
        }

/* Ostatní */
a {
    color: #4CAF50;
    text-decoration: none;
}
a:hover {
    color: #45a049;
    text-decoration: underline;
}

img{
    width: 400px;
    padding-left: 20px;
    align-items: center;
}