* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

@font-face {
  font-family: "Gedau";
  src: url("/vendor/fonts/TLMGedau/TLMGedauRoman.eot"), url("/vendor/fonts/TLMGedau/TLMGedauRoman.woff") format('woff'), url("/vendor/fonts/TLMGedau/TLMGedauRoman.svg") format('svg');
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #f2f2f2;
  font-family: "Gedau", sans-serif;
  line-height: 1.6;
}

#wrapper {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

#inner {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  background: url("logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px 150px;
  height: 150px;
  width: 150px;
  text-indent: -5000px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
}

#white {
  width: 100%;
  max-width: 800px;
  background: #fff;
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

h2 {
  font-style: bold;
  font-size: 28px;
  margin: 0 0 20px 0;
  text-align: center;
  color: #333;
}

h3 {
  font-style: bold;
  font-size: 20px;
  margin: 0 0 15px 0;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

p {
  margin: 0 0 15px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: #333;
}

.storelink {
  display: inline-block;
  cursor: pointer;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 50px;
  margin: 0px 20px;
}

.storelink.apple {
  width: 136px;
  height: 50px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #inner {
    padding: 10px;
  }

  #white {
    margin: 20px auto;
    padding: 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .logo {
    height: 120px;
    width: 120px;
    background-size: 120px 120px;
  }
}

@media (max-width: 480px) {
  #white {
    padding: 15px;
    margin: 15px auto;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 13px;
  }
}