html {
  background-color: #09213f;
  color: #fff;
  font-family: Inter, Impact, Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}

h1 {
  font-size: calc(12px + 3vw);
  text-align: center;
}

h2 {
  font-size: calc(12px + 1vw);
}

h3 {
  font-size: calc(12px + 0.75vw);
}

h4 {
  font-size: calc(12px + 0.5vw);
}

p {
  font-size: calc(12px + 0.5vw);
}

/* Style for all hyperlinks */
a {
  color: white; /* Text color */
  text-decoration: none; /* Remove underline */
}

/* Style for hovered hyperlinks */
a:hover {
  color: lightblue; /* Text color on hover */
  text-decoration: underline; /* Underline on hover */
}

/* Style for visited hyperlinks */
a:visited {
  color: lightblue; /* Text color for visited links */
}

/* Style for active hyperlinks */
a:active {
  color: white; /* Text color when the link is clicked */
}

.container {
  display: flex;
  align-items: center;
}

.responsive-svg-logo {
  max-width: 15%;
  height: auto;
}

.app-stores {
  height: auto;
  display: flex;
  justify-content: space-evenly;
}

.app-stores a {
  flex: auto;  
  max-width: 300px;
}

.app-stores img {
  width: 100%;
  height: auto;
}

.text-primary {
  color: #fff;
}

.text-secondary {
  color: #36b04b;
}

.support-text {
  text-align: center;
  font-size: calc(12px + 3vw);
}