@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 16px;
}

header h1 {
    color: #252727;
    text-align: left;
    margin: 20px 0;
}

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

.app-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.app-screenshot img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    max-width: 80%;
    object-fit: cover;
}

.hero-content {
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.hero-content h2 {
    color: #252727;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px;
}

.hero-content p {
    color: #8D8F8F;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 40px;
}

footer {
    padding: 16px;
    text-align: center;
    margin-top: auto;
}

footer a {
    text-decoration: none;
    margin: 0 10px;
    color: #8D8F8F;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .app-screenshot {
        width: 50%;
        margin-bottom: 0;
    }

    .hero-content {
        width: 50%;
        max-width: none;
    }
}