* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #8ceca7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.container {
    text-align: center;
    width: 100%;
}

.logo {
    width: 80%;
    max-height: 50vh;
}

.tagline {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.4;
    padding: 0 20%;
    font-weight: 600;
}

.button {
    display: inline-block;
    background-color: #ffffff;
    color: #8ceca7;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid #8ceca7;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.button:hover {
    background-color: #ffffff77;
    color: #ffffff;
}

.footer-text {
    color: white;
    font-size: 14px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .logo {
        width: 90%;
    }
    .tagline {
        font-size: 1.3rem;
        padding: 0 5%;
    }
    .button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 95%;
    }
    .tagline {
        font-size: 1.2rem;
        padding: 0 5%;
    }
    .button {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
}
