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

header.small {
    height: 125px; /* Adjust the height of the smaller header */
    backdrop-filter: blur(10px); /* Add blur effect to the smaller header */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    background-color: rgba(22, 29, 35, 0.8); /* Adjust the background color and opacity of the smaller header */
}

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

.container {
    max-width: 100%;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    /* justify-content: space-between; Remove this property to fix the white space */
    margin-top: -50px;
    background: transparent;
}

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

.title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 60px;
    font-weight: 300;
    border-bottom: 3px solid #222;
    padding-bottom: 10px;
}

.icons {
    width: 25px; /* Adjust this value to the desired width */
    height: 25px; /* Adjust this value to the desired height */
    margin-right: 5px;
}

.contact-item {
    margin-bottom: 5px;
}

.contact-item span {
    font-weight: bold;
}

.contact-item a {
    color: #686868;
    text-decoration: none;
}

.gps {
    margin-top: 25px;
    border-radius: 10px;
}

.iframe {
    margin-left: 10px;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
}

/* Media query for mobile devices with screen width up to 600px */
@media screen and (max-width: 1100px) {
    .iframe{
        margin-left: -50px;
    }
}

@media screen and (max-width: 900px) {
    .container{
        margin-top: 160px;
    }
    .text-container {
        padding: 30px 10px; /* Adjust padding for smaller screens */
        margin: 10px; /* Adjust margin for smaller screens */
    }
    .title {
        font-size: 30px; /* Adjust font size for smaller screens */
    }
    .iframe{
        margin-left: -15px;
        height: 200px;
        width: 350px;
    }
}
