@font-face {
  font-family: 'Inter-Regular';
  src: url('./Inter-Regular.woff2') format('woff2'), url('./Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('./Inter-Medium.woff2') format('woff2'), url('./Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Semibold';
  src: url('./Inter-SemiBold.woff2') format('woff2'), url('./Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('./Inter-Bold.woff2') format('woff2'), url('./Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
  margin: 0;
  font-family: 'Inter-Regular', sans-serif;
  font-weight: 400;
  background: #fff;
  position: relative;
  padding: 150px 30px;
  overflow: hidden;
}

.city-scroller {
  display: flex;
  align-items: center;
  position: relative;
}

.go {
  font-family: 'Inter-Bold', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  height: 45px;
  color: #5e14d7;
  margin-right: 12px;
  white-space: nowrap;
}

.city-wrapper {
  width: 100%;
  height: 404px;
  max-height: 100svh;
  overflow: hidden;
  position: relative;
}

.city-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}

.city-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
}

.city-wrapper::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  height: 100svh;
  width: 100vw;
  z-index: 2;
  bottom: 0;
  background-image: url('./bg.svg');
  background-position: center;
  background-repeat: no-repeat;
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.city-list li {
  text-align: left;
  font-family: 'Inter-Bold', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  height: 45px;
  color: #5e14d7;
  white-space: nowrap;
}

.message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 50px;
  margin: 0 auto;
  padding: 50px 0;
  width: 100%;
  z-index: 1;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 14%,
    rgba(255, 255, 255, 1) 33%,
    rgba(255, 255, 255, 1) 66%,
    rgba(255, 255, 255, 0.8) 86%,
    rgba(255, 255, 255, 0) 100%
  );
}
.message h5 {
  font-family: 'Inter-SemiBold', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #111827;
  margin: 0;
  margin-bottom: 8px;
}
.message p {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

@media screen and (max-width: 1920px) {
  .message {
    bottom: 0;
  }
}

@media screen and (max-width: 425px) {
  .message h5 {
    font-size: 18px;
    line-height: 22px;
  }

  .city-list li,
  .go {
    font-size: 28px;
    line-height: 36px;
  }
}
