body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  background: #111111;
  color: white;
  font-family: Afacad, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  padding: 0 5%;
}

* {
  box-sizing: border-box;
}

.app-list {
  /* display: grid;
  grid-template-columns: auto; 
  width: 100%;
  justify-content: space-between; */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 99vw;
  padding: 0 5%;
  margin-bottom: 6vh;
}

nav a {
  color: white;
}

.header-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.logo {
  width: 18%;
  height: 70px;
  object-fit: contain;
}

h1 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  margin-bottom: 5vh;
}

.app-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 6vh;
  color: white;
  text-decoration: none;
}

.app-logo {
  width: 20vw;
  aspect-ratio: 1;
  object-fit: contain;
  overflow: hidden;
  border-radius: 15px;
}

.app-name {
  display: block;
  margin: 2vh 0;
  text-align: center;
}

.apple-logo {
  width: 30vw;
  aspect-ratio: 2.9;
  object-fit: contain;
}

.google-logo {
  background-color: white;
  border-radius: 5px;
  object-fit: cover;
}

.app-name {
  font-size: 18px;
}

@media screen and (min-width: 1024px) {
  body {
    padding: 0;
  }
  nav {
    margin-left: 20px;
  }

  .logo {
    width: 90px;
  }

  h1 {
    max-width: 600px;
    margin-bottom: 10vh;
  }

  .app-list {
    display: grid;
    
    grid-template-columns: auto auto auto; 
    width: 100%;
    max-width: 700px;
    justify-content: space-between;
  }

  .app-logo {
    width: 90px;
  }

  .app-name {
  }

  .apple-logo {
    width: 100px;
  }
}
