body {
    margin: 0;
    padding: 0;
    background-image: url('pozadi.jpg'); /* Nahraď 'pozadi.jpg' cestou k obrázku pozadí */
    background-size: cover; /* Roztáhnout pozadí na celou stránku */
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    text-align: center;
    padding: 50px;
    margin: 100px auto;
    max-width: 60%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5); /* Průhledné pozadí */
}

.logo-container {
    display: inline-block;
}

.logo-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-circle img {
    max-width: 70%;
    max-height: 70%;
}
