.home-container>*:not(.stars) {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.title {
    font-family: "Kaushan Script", cursive;
    color: #386560;
    font-size: 3.2em;
    margin-bottom: 20px;
    margin-top: 30px;
    animation: fadeIn 2s ease-in-out;
}

.description {
    font-size: 1.4em;
    color: #386560;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

.subtitle {
  color: #386560;
  animation: fadeIn 3s ease-in-out;
}

.download-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 1em;
    flex-wrap: wrap;
  }
  
  .download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.8em 1.2em;
    background-color: #386560;
    color: white;
    text-decoration: none;
    border-radius: 0.5em;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s;
  }
  
  .download-button:hover {
    background-color: #2e524f;
  }
  
  .store-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  