body {
    margin: 0;
    padding-top: 60px; /* prostor pro navbar */
    font-family: Helvetica;
    font-weight: bold;
    font-size: 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: center;
    gap: 14rem;

    font-size: 0.9rem;
    padding: 1.5rem 0;
    background-color: white; /* můžeš změnit nebo odebrat */
    z-index: 1000;
}

.navbar a {
    margin: 0;
    cursor: pointer;
    color: inherit;
    text-decoration: inherit;
}

.body img.logo {
    margin-top: 25px;
    width: 300px;
    height: 300px;
}

.body p {
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
}

.contact {
    margin-top: auto;
    margin-bottom: 125px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    width: auto;
    max-width: 90vw;
    min-width: 250px;

    margin-left: auto;
    margin-right: auto;
}

.contact p {
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
}

.email {
    padding: 0.7rem;
    font-size: 1rem;
    width: 300px;
    box-sizing: border-box;
}

.contact .msg {
    height: 1.2rem;
    visibility: hidden;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.contact .msg.visible {
    visibility: visible;
    opacity: 1;
}

.button {
    padding: 0.7rem;
    font-size: 1rem;
    background-color: #000;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    align-self: flex-end;
}

.button:hover {
    background-color: white;
    color: #000;
    border: 1px solid #000;
}

@media (min-width: 768px) {
    body {
        display: none;
    }
}

