/* Reset default styles */
body, html {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  background-color: #DDF4E7;
}

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

.logo {
  width: 120px;
  height: 120px;
  border-radius: 20px; /* Adjust the border radius to control the roundness */
}

.app-store-icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

.app-name {
  font-size: 42px; /* Adjust the font size as desired */
  font-family: "Arial", sans-serif; /* Use a modern font family of your choice */
  margin-top: 40px;
  font-weight: bold; /* Add font weight to enhance the modern look */
  color: #F11A7B;
}

.landing-text {
  font-size: 20px; /* Adjust the font size as desired */
  font-family: "Arial", sans-serif; /* Use a modern font family of your choice */
  margin-top: 5px;
  color: #3E001F;
}

.links-section {
  text-align: center;
  color: #3E001F;
}

footer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 18px;
  color: #5C5470;
}
