/* Tipy page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100%;
    height: auto;
    background-image: linear-gradient(45deg, #ffffff 0%, #f0f0f0 75%, #d8d8d8 100%);
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    margin-top: -50px;
}

.text-container {
    padding: 250px 150px;
    margin: 80px;
    flex-grow: 1; /* Allow the container to grow and fill the available space */
    background:transparent;
    margin-top: 10px;
    margin-bottom: -150px;
}

.text-container p {
    margin-bottom: 40px;
    font-size: 22px;
    color: #333;
    margin-right: 200px;
}

.title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 60px;
    font-weight: 300;
    border-bottom: 3px solid #222;
    padding-bottom: 10px;
}
.subtitle {
    text-align: left;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 200;
}
.obec {
    font-weight: normal;
    text-align: center;
}

.text-container ul {
    font-size: 22px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column; /* Stack elements vertically */
        margin-top: 160px;
        align-items: center; /* Center items horizontally */
        padding: 0 15px; /* Reduce horizontal padding */
    }
    
    .text-container {
        padding: 40px 20px; /* Adjust padding for smaller screens */
        margin: 0; /* Remove unnecessary margins */
    }
    
    .text-container p {
        margin-right: 0; /* Remove margin on the right side */
    }
    
    /* You can adjust the font sizes and other styles as needed */
    .title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .subtitle {
        font-size: 30px;
    }
    .text-container ul li{
        font-size: 20px;
    }
}
@media (max-width: 600px){
    .text-container ul li{
        font-size: 18px;
    }
}
@media (max-width: 475px){
    .text-container ul li{
        font-size: 16px;
    }
}