main {
    width: 95%;
    margin-top: 30px;
    margin-bottom: 50px;
}
h2, h3, h4 {
    color: var(--text2-color);
}


ol {
    margin-left: 20px;
}

ul {
    margin-left: 40px;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 20px;
    font-weight: bold;
}

.date-location {
    margin-top: 40px;
    text-align: right;
    font-style: italic;
}

/* Styl pro obsah */
.content {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    color: black;
    border: 2px solid var(--tertiary-color);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: var(--secondaryGlass2-color);
    animation: fadeIn 1.3s ease-in-out forwards;
    opacity: 0;
}

/* Styly pro table of contents */
.toc {
    margin-bottom: 30px;
}

.toc h2 {
    border-bottom: none;
}

.toc ol li {
    margin-bottom: 5px;
}