html,
body {
  background-color: #fff;
  color: white;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

section {
  background-color: #171717;
}

h1,
h2 {
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  margin-top: 40px;
}

h2:first-of-type {
  margin-top: 20px;
}

.logo {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

.logo img {
  width: 500px;
}

@media all and (max-width: 768px) {
  .logo img {
    width: 450px;
  }
}

@media all and (max-width: 479px) {
  .logo img {
    width: 350px;
  }
}

.icon.heart {
  color: lightcoral;
}

a {
  color: aquamarine;
  font-weight: bold;
}

a:hover,
a:active {
  color: mediumaquamarine;
}

a code {
  color: black;
}

code {
  background-color: aquamarine;
  color: black;
  font-family: monospace;
  padding: 1px;
  user-select: all;
}

code.image {
  background-color: lightyellow;
}

iframe {
  border: 0;
  width: 100.2vw;
  height: 100vh;
  left: -2px;
  top: 0px;
  position: absolute;
}

/* PWA */
.android-modal {
	z-index: 9999999;
  bottom: 0;
  left: 0;
  position: fixed;
  background: #7669d2;
  width: 100%;
  opacity: 0;
  transition: 0.5s all;
  transform: translateY(100%);
}

.android-modal .close {
  position: absolute;
  right: 5px;
  top: -5px;
  font-size: 23px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .android-modal .container {
    padding: 28px 15px 15px;
  }  
}

.android-modal.active {
  opacity: 1;
  transform: translateY(0);
}

.container {
  margin: 0 auto;
  max-width: 768px;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.android-install {
  padding: 0.7rem 1.4rem;
  border-radius: 0.25rem;
  border: 0;
  font-size: 14px;
  background: #6132d6;
  color: #fff;
  transition: 0.5s all;
  cursor: pointer;
}

.android-install:hover {
  background: #4a1f9e;
}

/* IOS PROMPT */
#ios-prompt {
	z-index: 9999999;
  position: fixed;
  padding: 10px;
  box-shadow: 0px 1px 10px 2px rgb(16 16 16 / 50%) !important;
  border-radius: 10px;
  filter: brightness(1.1);
  backdrop-filter: blur(10px);
  background-color: rgba(250, 250, 250, 0.7);
  bottom: 2px;
  left: 0;
  display: flex;
  opacity: 0;
  transition: 0.5s all;
  transform: translateY(100%);
}

#ios-prompt.active {
  opacity: 1;
  transform: translateY(0);
}

#ios-prompt span {
  color: #7b7b7a;
  font-size: 2rem;
  margin-top: -14px;
}

#ios-prompt img {
  height: 65px;
  width: auto;
  margin-right: 1rem;
}

#ios-prompt p {
  margin-top: -3px;
  font-weight: 600;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: #7b7b7a;
  margin-bottom: -3px;
  line-height: 4.3rem;
}

#ios-prompt p img {
  display: inline-block;
  height: 21px;
  width: auto;
  margin-right: 0px;
}

@media (max-width: 900px) {
  #ios-prompt p {
    line-height: 1.3rem;
  }
}
