/* Resetování výchozích stylů prohlížeče */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}


.content {
    max-width: 800px;
    width: 100%; /* Ensure the container takes the full width of the viewport if it's smaller than 800px */
    padding: 0px;
    box-sizing: border-box; /* Include padding in the total width */
}
iframe {
    width: 750px; 
    height: 421px; 
}
/* Media query for mobile devices */
@media only screen and (max-width: 700px) {
    iframe {
        width: 100%; 
    }
}

/* Styles for <p> elements */
p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: left;
    margin: 0 0 20px 0;
    padding: 10;
}

/* Add a subtle border bottom to paragraphs */
h2 {
    border-bottom: 1px solid #ccc;
}

/* Add space under <h2> elements with a border-bottom */
.heading-container {
    padding-bottom: 20px; /* Adjust the value as needed */
}

a {
color: #333;
}


/* Styly pro hlavní obsah (main) */
main {
    padding: 20px;
}


.main-functions {
    font-family: 'Helvetica', serif;
    background-color: #dcdcdc;
    padding: 10px;
}

.main-functions li {
    margin-bottom: 20px;
}

.styled-text {
    font-style: italic;
    font-weight: 700;
    background: #f0f0f0;
    color: #333;
}

/* Základní styly pro tělo stránky */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0;
}

img {
    align: center;
    width: 100%;
    height: auto;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    width: 100%; /* Ensure the container takes the full width of the viewport if it's smaller than 800px */
    box-sizing: border-box; /* Include padding in the total width */
}


nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

nav a:hover {
    text-decoration: none;
    color: #FFA500;
}


/* Styly pro sekce (section) */
section {
    margin-bottom: 20px;
}


section ul li {
    padding-top: 5px;
}


.container {
    display: flex;
    height: 100%;
	flex-direction: column; /* Display steps vertically */
    justify-content: space-between;
    align-items: center;
}
.step {
    width: 60%;
    padding: 20px;
    border: 5px solid #FFA500;
    border-radius: 10px;
    background-color: #f0f0f0;
    text-align: left;
    margin-bottom: 20px;
}

/* Styly pro zápatí (footer) */
footer p {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.footer-text {
color: white;
}

