body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.lngSelector {
  position:absolute;
  top:0px;
  right:0;
  z-index:2;



}

.lngSelector a {

margin:5px;
padding:5px;
padding-bottom:0px;
border:1px solid #FFF;
text-decoration: none;
color:#fff;

}

.lngSelector a.selected {

background-color:#888888;

}

.container {
  max-width: 900px;
  margin: auto;
  padding: 10px;
}

.title {
  font-size: 4rem;
  margin-top: 20px;
  margin-bottom: 0px;
}

.subtitle {
  font-size: 2.2rem;
  margin-top: 10px;
  color: #ccc;
  font-weight:bold;
}

.intro, .outro {
  margin: 20px auto;
  padding-left:40px;
  padding-right:40px;
  max-width: 600px;
  line-height: 1.5;
  color: #ddd;
  font-size: 1.4rem;
}

/* CAROUSEL */
.carousel {
  position: relative;
  margin: 40px auto;
  width: 90%;
  max-width: 400px;
}

.carousel img {
  width: 100%;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px;
}

.arrow.left {
  left: -40px;
}

.arrow.right {
  right: -40px;
}

/* STORE BUTTONS */
.store-links {
  margin: 30px 0;
}

.store-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #444;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
}

.store-btn:hover {
  background: #666;
}

/* FOOTER */
footer {
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .title {
    font-size: 3.3rem;
  }

  .subtitle {
    font-size: 2.2rem;
  }

  .arrow.left {
    left: -20px;
  }

  .arrow.right {
    right: -20px;
  }
}



