/* Reset základního stylu */
body, h1, p {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Celá stránka - pozadí přes celou obrazovku */
body {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Překrytí pozadí pro lepší čitelnost */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
   /* background: rgba(0, 0, 0, 0.1); /* Ztmavení pozadí */
    display: flex;
   justify-content: center;        
    align-items: center;

}

/* Hlavní kontejner */
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 300px;

    background: rgba(255, 255, 255, 0.5); /* Lehce průhledné pozadí */
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Rozmazání pozadí */
}

/* Logo */
.logo {
    margin-bottom: 40px;
    max-width: 500px;  
}
.logo img {
display:block;
Margin: 0 auto;
    margin-bottom: 40px;
    max-width: 250px;   
}

/* Nadpis */
h1 {
    font-size: 28px;
    color: #086c5f;
    margin-bottom: 15px;
}

/* Popis */
p {
    font-size: 18px;
    color: #3c3c3c;
    line-height: 1.6;
}

/* Kontakty */
.contact {
    margin-top: 40px;
}

.contact p {
    font-size: 18px;
    font-weight: bold;
        color: #3c3c3c;
}
