html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('img/background.png');
    background-repeat: repeat;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.header-content {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-sizing: border-box;

}

.logo {
    width: 150px;
}

.lang {
    width: 30px;
    cursor: pointer;
}

.main {
    flex: 1 1 auto;
}
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.text-content {
    flex: 1;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta {
    display: flex;
    align-items: center;
}

button {
    background-color: #c850c0;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 20px;
}

span {
    font-size: 16px;
}

.qr-code img {
    width: 200px;
}

footer {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    box-sizing: border-box;
    z-index: 1;
}

footer img {
    width: 30px;
    margin: 0 15px;
}

.playstore-icon {
    width: 27.075px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        margin-bottom: 30px;
    }

    h1 {
        font-size: 36px;
    }

    .cta {
        flex-direction: column;
    }

    button {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 420px) {
    h1 {
        font-size: 30px;
    }
}
