:not(:defined) > * {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background-color: #1b3a34;
  color: white;
  font-family: "Poppins", sans-serif;
}

.c-wrapper {
  background-image: url('../images/bg-mobile.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.button-group {
  position: absolute;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

a {
  text-decoration: none;
  color: #fff;
}

a.website-link {
  text-decoration: underline;
  font-weight: 600;
}

.button svg {
  margin-right: 0.3em;
  vertical-align: sub;
  width: 1.3em;
  height: 1.3em;
  filter: drop-shadow(0 1px 1px #444);
}

/* Common button styles */
a.button:link,
a.button:visited {
  border-radius: 24px;
  color: white;
  font-weight: bold;
  /* margin: 36px; */
  padding: .5em 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px #444;
  cursor: pointer;
  z-index: 999;
}

a.button:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  z-index: -1;
  border-radius: 20px;
  box-shadow: 0px 1px 1px 1px #ccc,
      0 0 0 4px #fff,
      0 2px 12px 2px #444
}

a.button:active:before {
  box-shadow: 0px 1px 2px 0 #444 inset,
      0 0 0 4px #fff,
      0 2px 12px 2px #444
}

/* Orange button styles - #F67914 */
a.button.orange {
  background-color: #F67914;
}

a.button.orange:before {
  background-color: #F67914;
  background-image: linear-gradient(to bottom, #FF9A42 0%, #D05E00 40%);
}

a.button.orange:active {
  background-color: #D05E00;
}

a.button.orange:active:before {
  background-color: #D05E00;
  background-image: none;
}

a.button.orange:hover {
  background: #FF8C29;
}

a.button.orange:hover:before {
  background-image: linear-gradient(to bottom, #FFA75C 0%, #F67914 40%);
}

/* Green button styles - #0FB225 */
a.button.green {
  background-color: #0FB225;
}

a.button.green:before {
  background-color: #0FB225;
  background-image: linear-gradient(to bottom, #34D249 0%, #0A8D1C 40%);
}

a.button.green:active {
  background-color: #0A8D1C;
}

a.button.green:active:before {
  background-color: #0A8D1C;
  background-image: none;
}

a.button.green:hover {
  background: #26C93B;
}

a.button.green:hover:before {
  background-image: linear-gradient(to bottom, #4FD962 0%, #0FB225 40%);
}

/* Red button styles - #E4273D */
a.button.red {
  background-color: #E4273D;
}

a.button.red:before {
  background-color: #E4273D;
  background-image: linear-gradient(to bottom, #F15266 0%, #C11629 40%);
}

a.button.red:active {
  background-color: #C11629;
}

a.button.red:active:before {
  background-color: #C11629;
  background-image: none;
}

a.button.red:hover {
  background: #F13A4F;
}

a.button.red:hover:before {
  background-image: linear-gradient(to bottom, #F66A7A 0%, #E4273D 40%);
}

.group {
  margin-bottom: 20px;
}

.no-cssgradients a.button:before {
  background-image: none;
}

.no-cssgradients a.button.orange:hover:before {
  background: #FF8C29;
}

.no-cssgradients a.button.green:hover:before {
  background: #26C93B;
}

.no-cssgradients a.button.red:hover:before {
  background: #F13A4F;
}

a.button.no-border:before {
  box-shadow: 0px -1px 2px 0 #065881 inset,
      0px 1px 1px 1px #ccc;
}

#clickSound {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-wrapper {
      background-image: url('../images/bg-desktop2.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }

  .button-group {
      bottom: 5%;
  }
}

@media only screen and (min-width: 1024px) {
  .c-wrapper {
      background-image: url('../images/bg-desktop2.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }

  .button-group {
      visibility: hidden;
  }
}