html, body {
  /* ensure that all of the viewport is used */
  width: 100%;
  height: 100%;
  /* ensure that no scrollbars appear */
  margin: 0;
  padding: 0;
  
  /* center SVG horizontally and vertically */
 /* display: flex;
  align-items: center;
  justify-content: center;*/
}

html, body {
    font-family: Georgia,Cambria,serif;
    max-width: 1200px;
    margin: 0 auto;
/*    padding: 20px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

footer{
    margin-top: auto;
}

.logo {
    width: 200px;
    margin: 2rem 0;
}

.logo-small {
      /* ensure 1:1 aspect ratio, tweak 50 to make SVG larger */
  width: 20vmin;
  /* set some maximum size (width and height need to match
   * aspect ratio, 1:1 in this case */
  max-width: 10%;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  margin-right: auto;
  margin-left: auto;
}

#picture {
  /* ensure 1:1 aspect ratio, tweak 50 to make SVG larger */
  width: 500vmin;
  /* set some maximum size (width and height need to match
   * aspect ratio, 1:1 in this case */
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.gallery {
  display: block;
  left: 0;
  bottom: 0;
  width: 80vmin;
  text-align: center;
  padding: 45px 0 50px;
    margin-left: auto;
    margin-right: auto;
}


.game {
  display: block;
  width: 100%;
  margin-top: 5em;
  text-align: center;
}

.game a {
    text-decoration: none;
}

.game p {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-feature-settings: 'dlig' 1,'liga' 1,'lnum' 1,'kern' 1;
    font-style: normal;
    font-weight: 600;
    margin: 10px 14px;
    color: #696e77;
    font-size: 1.5em;
}

.game .appicon {
    display: inline-block;
    width: 20vw;
    border-radius: 10%;
    filter: drop-shadow(2%, 2%);
}

.game .gp {
    height: 5vw;
}


.game .ios {
    height: 5vw;
}

.responsive {
  padding: 0 6px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.header {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  width: 97%;
  text-align: right;
  padding: 20px 0 20px;
}

.header .links {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-feature-settings: 'dlig' 1,'liga' 1,'lnum' 1,'kern' 1;
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 3rem;
}

.header .links a {
    text-decoration: none;
    margin: 0 14px;
    color: #696e77;
}

.header .links a:hover {
    color: #373D49;
    font-size: 2.1rem;
    line-height: 2.9rem;

}

.apps-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.app-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.store-button {
    height: 40px;
}

@media (max-width: 768px) {
    .apps-container {
        flex-direction: column;
        align-items: center;
    }

    .app-card {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer {
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 45px 0 50px;
}

.footer .links {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-feature-settings: 'dlig' 1,'liga' 1,'lnum' 1,'kern' 1;
    font-style: normal;
    font-weight: 600;
}

.footer .links a {
    text-decoration: none;
    margin: 0 14px;
    color: #696e77;
}

.footer .links a:hover {
    color: #373D49;
}

.footer p {
    font-style: normal;
    font-weight: 500;
    color: #757575;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-feature-settings: 'dlig' 1,'liga' 1,'lnum' 1,'kern' 1;
    font-style: normal;
    font-weight: 600;
    margin-top: 0;
}

html {
    font-size: .875em;
    background: #fff;
    color: #373D49;
    font-weight: 400;
    line-height: 2rem;
}