* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 5px; /* Přidání 5px mezery od vrchu */
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 5px); /* Zajištění, že logo zůstane uvnitř viditelné oblasti */
}

@media (max-width: 768px) {
    header {
        padding-top: 5px;
    }

    .logo {
        width: 80%; /* Přizpůsobení velikosti loga na mobilních zařízeních */
    }
}
