html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

:root {
  --title-color: rgb(50, 50, 50);
  --footer-color: rgb(88, 88, 88);
  --main-color: #785de8;
}

.main {
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  max-width: 180px;
  min-width: 180px;
  height: auto;
  margin-top: 10vh;
  padding-left: 36px;
}

.txt-slogan {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: var(--title-color);
}

.txt-info {
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
  color: var(--title-color);
}

#getApp {
  width: 140%;
  margin-left: -20%;
  display: none;
}

.btn:hover,
#appLinkButtons img:hover {
  opacity: 0.8;
  cursor: pointer;
}

.btn-big {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--main-color);
  border-radius: 8px;
  border: none;
  color: white;
}

.btn-txt {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  border: none;
  padding: 10px;
  background-color: white;
}

#appLinkButtons,
#openTheApp {
  display: none;
}

#appLinkButtons img {
  height: 40px;
  width: auto;
}

footer {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: var(--footer-color);
  background-color: white;
}
