* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #424242;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

header h2 {
    font-size: 18px;
    font-weight: 300;
}

nav {
    margin-top: 20px;
}

.navigace {
    list-style: none;
    display: flex;
    justify-content: center;
}

.navigace li {
    margin: 0 10px;
}

.navigace a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    background-color: #e94560;
    border-radius: 5px;
}

.navigace a:hover {
    background-color: #1a1a2e;
    color: #e94560;
    border: 1px solid #e94560;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
}

main h3 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 15px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h4 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
}

section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 10px;
}

section a {
    color: #e94560;
    text-decoration: none;
    font-weight: bold;
}

section a:hover {
    text-decoration: underline;
}

section img {
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: auto;
    height: auto;
    max-width: 400px;
    max-height: 400px;
}

.tlacitko {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
}

.tlacitko:hover {
    background-color: #1a1a2e;
    color: #e94560;
}

iframe{
    height: 450px;
    width: 800px;
    border: 0;
}

footer {
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 1100px) {
    iframe {
        width: 70%;
    }
    
    .navigace {
        flex-direction: column;
    }
    
    .navigace li {
        margin: 5px 0;
    }
   
    .navigace a {
        display: block;
        width: 100%;
        text-align: center;
    }

    header {
        padding: 10px;
    }
    
    header h1 {
        font-size: 28px;
    }
}
