body {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    background-color: #479448;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

main {
    margin-inline: auto;
    margin-block: 0;
    color: white;
    margin-bottom: 30px;
}

.kontakt {
    margin-bottom: 20px;
}

.kontakt p {
    margin-block: 0;
    text-align: center;
    font-size: 1.5rem;
}

.kontakt h1 {
    text-align: center;
    margin-bottom: 10px;
}

.kontakt hr {
    width: 250px;
    height: 3px;
    border: none;
    background-color: white;
    margin-bottom: 16px;
}

.obsah {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-inline: auto;
    margin-top: 100px;
}

header {
    transform: skew(0deg, -5deg);
    margin-top: -200px;
    padding-top: 200px;
    padding-bottom: 50px;
    background: white;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 10px #424242;
}

.header_obsah {
    transform: skew(0deg, 5deg);
    align-items: space-between;
    padding: 0 50px;
}

footer {
    margin-top: 300px;
    background: white;
}

.footer_obsah {
    padding: 0 50px;
}

.kontakt_info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.kontakt_info img {
    width: 30px;
    margin-right: 16px;
}

.kontakt_info p {
    font-size: 24px;
    width: 400px;
    text-align: left;
}

.kontakt_info a {
    font-size: 24px;
    width: 400px;
    text-align: left;
    text-decoration: none;
    color: white;
}

.kontakt_info a:hover {
    font-size: 24px;
    width: 400px;
    text-align: left;
    text-decoration: none;
    color: rgb(192, 192, 192);
    transition-duration: 200ms;
}

.jazyk {
    display: flex;
    align-items: center;
    justify-content: right;
}

.logo_jazyk {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}


.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space;
}

.odstavce {
    width: 1000px;
}

.collapsible {
    background-color: #479448;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 24px;
    font-weight: 600;
    border-bottom: solid 2px white;
}

.active,
.collapsible:hover {
    background-color: #487949;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #479448;
    color: white;
}

.content ul li {
    font-size: 20px;
    margin-bottom: 10px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.hriste {
    width: 400px;
    margin-right: 10px;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 10px #424242;
}

@media only screen and (max-width: 600px) {
    body {
        background-color: #479448;
    }

    header {
        width: 100%;
        margin-top: -200px;
        padding-top: 200px;
        padding-bottom: 0px;
    }

    .header_obsah {
        padding: 0 20px;
    }

    main {
        margin-inline: 0;
    }

    .obsah {
        width: 100%;
        margin-inline: 0;
    }

    .container {
        flex-direction: column;
    }

    .hriste {
        width: 350px;
    }

    .kontakt {
        margin-inline: auto;
        max-width: 370px;
    }

    .jazyk a {
        text-align: center;
    }

    .logo {
        width: 200px;
    }

    .kontakt h1 {
        font-size: 1.8em;
    }

    .odstavce {
        width: 95%;
    }

    .collapsible {
        font-size: 20px;
    }

    footer {
        margin-top: 300px;
        width: 100%;
    }
}