.Home-container {
    padding: 0 2rem;
    min-height: 100vh;
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 100px;
  }
  
  .Home-main-container {
    min-height: 100%;
    padding: 4rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .Home-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  
    display: flex;
    flex: 1;
    padding: 2rem 0;
    justify-content: center;
    align-items: center;
  }

  
  .Home-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.015;
    color: white;
    margin: 0 .35em;
  }
  
  .Home-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  @media screen and (max-width: 375px) {
    .Home-logo > img {
      transform: scale(0.8);
    }
  }
  
  html,
body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-weight: 700;
  background-color: #121212;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}
.logo-name {
    color: white;
    font-size: 1.1em;
    margin-top: .5em;
}
.download {
  height: 52px;
  width: auto;
  margin: .5em;
  margin-top: 1em;
  cursor: pointer;
}
.text-center {
  text-align: center;
}