body {
    padding: 0px;
    margin: 0px;
}

.app-container {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 70px;
}

.app-header-image img {
  max-width: 800px;
  width: 100%;
}

.app-header {
  padding: 0 20px;
  margin-bottom: 25px;
}

.app-header-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #3b363f;
  text-align: center;
  margin-bottom: 40px;
}

.app-header-content {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 80px;
}

.app-header-content p {
  opacity: 0.6;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #3b363f;
  text-align: center;
}

.app-button {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 160px;
}

.app-button button {
  padding: 15px 50px;
  border-radius: 63px;
  box-shadow: 0 30px 25px 0 #eeeeee;
  background-color: #40b0ff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
}
.app-button button:active {
  opacity: 0.9;
}

.app-footer {
  border-top: 1px solid rgba(85, 85, 85, 0.411);
  width: 100%;
}
.app-footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 120px;
}
.app-footer-content img {
  height: 15px;

}
.app-footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-footer-column p {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #cad3d6;
  margin-left: 10px;

}
@media all and (min-width: 768px) {
  .app-footer-content {
    flex-direction: row;
    height: 90px;
  }
  .app-footer-column {
    flex-direction: row;
    align-items: center;
  }
  
}