/* Reset základních okrajů */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Celá stránka – vycentrování obsahu */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 1em; /* pro mobil, aby text nebyl nalepený na okraj */
}

/* Box s textem */
#box {
    text-align: center;
}

/* Mezera mezi odstavci */
#box p {
    margin-top: 1em;
}

/* Odkazy */
#box a {
    color: #0066cc;
    text-decoration: none;
}

#box a:hover {
    text-decoration: underline;
}
