/* Ú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: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    margin-top: -50px;
}

.text-container {
    padding: 250px 50px;
    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 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

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

/* Mobile version */
@media screen and (max-width: 900px) {
    body {
      background-color: #f1f1f1; /* Adjust the background color for the body on mobile */
    }
  
    .container {
      flex-direction: column; /* Stack elements vertically */
      margin-top: 160px;
      align-items: center; /* Center items horizontally */
      padding: 0 15px; /* Reduce horizontal padding */
  }
    .title {
      font-size: 44px; /* Reduce the font size for better fit on smaller screens */
    }
  
    .text-container {
      padding: 40px 20px; /* Adjust padding for smaller screens */
      margin: 0; /* Remove unnecessary margins */
    }
  
    .text-container p {
      font-size: 18px; /* Reduce the font size for better fit on smaller screens */
      margin-bottom: 10px;
      margin-right: 0; /* Remove margin on the right side */
    }
  }