.bsd {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  z-index: 1;
}

a {
  text-decoration: underline;
}
body {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  margin: 0;
  font-weight: 300;
  direction: rtl;;
}
.small-text {
  font-size:21px;
}
.medium-text {
  font-size:25px;
}
.large-text {
  font-size: 31px;
}

.card-dark, .card-light {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}
.card-inner {
  position: absolute;
  top: 50%;
  /* width:50%; */
  transform: translateY( -50%);
  text-align: center;
  width: 100%;
  padding-left:10%;
  padding-right:10%;
  box-sizing: border-box;
  padding-top: 50px; /* To not overlap with the arrow */
  padding-bottom: 100px; /* To not overlap with the arrow */
    /* margin-left: 10px; */
    /* box-sizing: content-box; */
    /* background-color: yellow; */
}
.card-dark {
  background-color:#444;
  background-image: url(dark-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 100vh;
}
.join-button {
  background-color: #8E4224;
  color: white;
  font-size: 31px;
  display: inline-block;
  border-radius: 10px;
  font-size:31px;
  padding:15px 80px;
  cursor: pointer;
}

.screenshot {
  height:200px;
}
.arrow {
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width:100%;
  height:58px;
  bottom: 3%;
}
.card-dark .arrow {
  background-image: url(./arrow-light.png);
}
.card-light .arrow {
  background-image: url(./arrow-dark.png);
}
.card-light {
  background:white;
}

.team .spacer {
  height: 1vh
}
.team {
  text-align: center;
}
.team img {
  border-radius: 50%;
  vertical-align: middle;
  width: 80px;
  background:white;;
  height: 80px;
  text-align: center;
  display:block;
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 10px;
}


@media (min-width:600px) {
  .team {
    text-align:right;
  }
  .team img {
    /* margin-left:30px; */
    display: inline;
    width: 100px;
    height: 100px;
    /* margin-left:30px; */
  }
  .small-text {
    font-size:42px;
  }
  .medium-text {
    font-size:50px;
  }
  .large-text {
    font-size:62px;
  }
  .card-inner {
    /* padding:50px; */
  }
  .screenshot {
    height:400px;
  }
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  /* direction: ltr; */
}

.cities {
  transition: all 1s linear 0s;
  transform: translateX(0px);
}