body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  background-color: #fcfcfc;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.container {
  text-align: center;
  width: 100%;
  height: auto;
  padding-top: 100px;
}

.logo {
  width: 80%;
  max-width: 300px;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: row;
  gap: 7%;
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  /* align-content: center; */
  gap: 4px;
  flex-direction: row;

  flex-wrap: wrap;
}

.download-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

.download-buttons a {
  text-decoration: none;
}


.ios {
  background-color: #654da6;
}

.android {
  background-color: #78C257;
}

footer {
  margin-top: 100px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

footer a {
  color: #654da6;
  text-decoration: none;
  margin: 0 10px;
}

.app-store {
  margin-top: 9px; 
  height: 62px;
}

.play-store {
  height: 80px;
}

.screenshots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}
/** carousel **/
.screenshot-carousel {
  position: relative;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  max-width: 300px;
  margin-top: 40px;
}

.screenshot-wrapper {
  display: flex;
  width: 100%;
}

.screenshot {
  width: 100%;
  flex: 0 0 auto;
  transition: transform 0.5s ease;
  opacity: 0;
  transition: opacity 1s ease;
}


.screenshot.active {
  opacity: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

.left {
  left: 0px;
}

.right {
  right: 0px;
}

.carousel-pagination {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.carousel-pagination span {
  height: 10px;
  width: 10px;
  margin: 5px;
  background-color: #e1e1e1;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
