

  .threeButtonsOnMainPage{

    display: flex;
    flex-direction: row;
  }



  .boxForMainPage{
    box-sizing: border-box;
    padding: 10px 27px 0px 27px;
    width: 850px;
    line-height: 1.8;
    color: black;
    text-align: center; 
    background-color: #f4f4f4;
    background-image: url("/obrazekTla");
    background-size:cover;
    border-radius: 60px;
    box-shadow: 10px 0px 40px 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
    
  }

  .welcome-body{
    font-size: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  }



  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .action-button {

    font-size: 30px;
    cursor: pointer;
    padding: 10px 20px;
    box-shadow: 10px 8px 22px 0px rgba(0, 0, 0, 0.6);
    color: rgb(0, 0, 0);
    border: 2px solid;
    background: none;
    border-radius: 14px;
    background-color: rgba(223,221,223);
    width: max-content;
    margin: 0 auto;
    position: relative; 
    top: -3px;
  }

  .action-button:hover {
    background-color: #582a72;
    color: #fff;
    border-color: #582a72;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(88, 42, 114, 0.2);
  }

  .action-button i {
    margin-right: 10px;
    font-size: 25px;
  }


.interFont{

  font-family: 'Inter', sans-serif;
}

.modern-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 25px;
  box-shadow: 10px 8px 22px 0px rgba(0, 0, 0, 0.6);
  color: rgb(0, 0, 0);
  border: 2px solid;
  background-color: rgba(223, 221, 223);
  border-radius: 14px;
  width: auto;
  margin: 0 auto;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.modern-button:hover {
  background-color: #582a72;
  color: #fff;
  border-color: #582a72;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(88, 42, 114, 0.2);
}

.modern-button i {
  font-size: 1.1em;
}

.modern-button.primary {
  background-color: #582a72;
  color: #fff;
  border-color: #582a72;
}

.modern-button.primary:hover {
  background-color: #46225a;
}

.modern-button.google-play {
  background-color: #f5f5f7;
  color: #333;
  border-color: #ccc;
}
.modern-button.google-play:hover {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

.welcome-body {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}




.carousel-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    margin: 10px 0;
    padding: 0 10px;
}

.section-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

.scrolling-carousel-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.scrolling-carousel {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    padding: 15px 0;
    animation: scroll-left-to-right 45s linear infinite;
    margin-right: 20px;
}

.scrolling-carousel-wrapper:hover .scrolling-carousel {
    animation-play-state: paused;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.carousel-card {
    flex: 0 0 auto;
    width: 180px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.carousel-card:hover {
    transform: scale(1.05);
}

.carousel-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


  @media (max-width: 850px) {


    .boxForMainPage{
      max-width: 100vw;
      padding: 10px 17px 0px 17px;

    }

    .carousel-thumbnail {
    height: 90px;
    width: fit-content;

}

.scrolling-carousel{

    gap: 10px;
}

.welcome-body{
  font-size: 20px;
}

.carousel-title{
  font-size: 18px;
}

}