* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html,body {
  background: #fefefe;
  color: #010101;
  font-size: 1rem;
  font-family: sans-serif;
}

.hidden {
  display: none !important;
}

h1, h2, p {
  width: 100%;
  padding: 0.25rem;
  margin: 0 auto;
}

h1 {
  text-transform: uppercase;
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 1rem auto;
}

a {
  color: #f00;
}

#menu {
  height: 2rem;
  background: #000;
  width: 100%;
}

#menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: calc(100% - 2rem);
  max-width: 1100px;
  margin: 0 auto;
}

#menu ul li {
  color: #fff;
  line-height: 2rem;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  list-style-type: none;
}

#menu ul li a {
  color: #fff;
  text-decoration: none;
}

#app {
    width: 100%;
    min-height: calc(100vh - 2rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#content {
    width: calc(100% - 1rem);
    max-width: 1100px;
    padding: 0.5rem;
    margin: 1rem auto;
 }




  .apps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    width: 100%;
    max-width: 1100px;
  }
  .apps .app {
    width: calc(100% - 1rem);
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 0.5rem;
    justify-content: center;
    background: #000;
    color: #fff;
  }
  @media screen and (min-width: 550px) {
    .apps .app {
       width: calc(33.333% - 2rem);
     }
  }


  .apps .app a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    min-height: 3rem;
    line-height: 3rem;
    width: 100%;
    text-align:center;
  }



/* Animations */

@keyframes spin {
  from {
    transform: rotate(0deg) scale(0.125);
  }
  to {
    transform: rotate(720deg) scale(1);
  }
}
