:root {
    background-color: #FDF5E6;
    color: #3E2723;
}

main,
aside {
    max-width: 110ch;
    margin: 0 auto;
}

nav {
    width: 100%;
}

.link {
    a:link {
        color: #FDF5E6;
        font-weight: bold;
    }

    a:visited {
        color: silver;
    }
}

a:link {
    color: #556B2F;
    font-weight: bold;
}

a:visited {
    color: silver;
}

footer a:link {
    color: #FDF5E6;
    font-weight: bold;
    font-family: 'Manrope';
}

footer a:visited {
    color: silver;
    font-family: 'Manrope';
}

h2,
h3,
h4 {
    color: #3E2723;
    font-family: 'Noto Serif';
    font-size: min(5vw, 3em);
}


h1 {
    background-color: #3E2723;
    border-radius: 7px;
    margin-bottom: 7px;
    color: #FDF5E6;
    font-family: 'Noto Serif';
    font-size: xx-large;
}

h2 {
    font-size: x-large;
}

h3 {
    font-size: larger;
}

h4 {
    font-size: large;
}

img {
    border-radius: 15px;

}

h2 {
    text-align: center;
}

p,
li,
figcaption,
address {
    color: #3E2723;
    font-size: medium;
    font-family: 'Manrope';
}

a {
    color: #3E2723
}

p {
    text-indent: 2em;
    margin-top: 1em;
    margin-bottom: 1em;
}

table {
    font-family: 'Manrope';
    color: #3E2723;
    text-align: center;
    border: #3E2723;
    border-radius: 25%;
    font-size: medium;
}

th,
td {
    border-bottom: 1px solid #ddd;

}

.active {
    background-color: #556B2F;
    border-radius: 5px;
    color: white;
}

.responzivny {
    max-width: 90%;
    max-height: 300px;
    height: auto;
    padding: 5px;
}

.container {
    display: flex;
    justify-content: center;
}

header {
    border-radius: 15px;
    text-align: center;
}



footer {
    background-color: #556B2F;
    border-radius: 5px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

address {
    color: #FDF5E6 !important;
}

@media print {
    :root {
        background-color: white;
        color: black;
    }

    input {
        visibility: hidden;
    }

    p,
    li,
    figcaption,
    ul,
    a,
    nav {
        font-family: Georgia, 'Times New Roman', Times, serif;
        color: black !important;
    }

    h1,
    h2,
    h3,
    h4 {
        color: black;
        font-family: Verdana, Arial, Tahoma, sans-serif;
    }

}

:focus {
    background-color: black;
    color: #FDF5E6 !important;
    border-color: orange;
}