* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #696eff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.content {
  display: flex;
  width: 100vw;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}

.contentRight {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.topRightContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.middleRightContent {
  max-width: 600px;
  width: 40vw;
}

.bottomRightContent {
  padding-top: 40px;
  max-width: 600px;
  width: 40vw;
  display: flex;
}

.logo {
  height: 130px;
  width: 130px;
}

.header {
  color: white;
  font-size: 100px;
  font-family: Nunito;
  padding-bottom: 0px;
}

.subheader {
  color: white;
  font-size: 25px;
  font-family: Nunito;
  text-align: center;
}

.logoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text {
  /* text-align: center; */
  color: white;
  font-family: Nunito;
  font-size: small;
  font-weight: 100;
}

.image {
  max-width: 500px;
  width: 30vw;
}
.imageHandy {
  width: 100vw;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: row;
  width: 100vw;
}

.footerHandy {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: row;
  width: 100vw;
}

.footerText {
  color: white;
  font-family: Nunito;
  font-size: small;
  font-weight: 100;
  margin-left: 10px;
  margin-right: 10px;
}

#store_container {
  flex-direction: row;
  margin-top: 30px;
}

.imageAppStore {
  float: left;

  width: auto;
  height: 66px;
  object-fit: cover;
  padding: 17px;
}

.imagePlayStore {
  float: left;

  height: 99px;
  object-fit: cover;
}

@media only screen and (max-width: 800px) {
  .image {
    display: none;
  }
  .content {
    flex-direction: column;
    margin-top: 30px;
  }

  .header {
    font-size: 70px;
  }

  .bottomRightContent {
    width: 80vw;
  }

  .footer {
    display: none;
  }

  #store_container {
    flex-direction: row;

    margin-top: 30px;
  }

  .imageAppStore {
    float: left;

    width: auto;
    height: 42px;
    object-fit: cover;
    padding: 9px;
  }

  .imagePlayStore {
    float: left;

    height: 60px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 300px) {
  #store_container {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 25px;
  }

  .imageAppStore {
    float: left;

    width: auto;
    height: 42px;
    object-fit: cover;
    padding: 9px;
  }

  .imagePlayStore {
    float: left;

    height: 60px;
    object-fit: cover;
  }
}

@media only screen and (min-width: 800px) {
  .footerHandy {
    display: none;
  }

  .imageHandy {
    display: none;
  }

  .content {
    height: 100vh;
  }
}
