body {
    background-color: gainsboro;
}

p {
    text-align: justify;
}

.home-container-content {
    flex: 1;
    display: flex;
    width: 100vw;
}

.logo {
    width: 40vw;
    display: flex;
    justify-content: flex-end;
    /* Đẩy ảnh sang phải */
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.app-content {
    width: 60vw;
    padding-left: 2rem;
    /* Tạo khoảng cách giữa avatar và nội dung */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.app-content p {
    margin-top: 0.5rem;
}

.button-container {
    margin-top: 2rem;
    text-align: center;
    display: flex;
}

.android-button img,
.ios-button img {
    width: 200px;
    height: 60px;
}

@media (max-width: 800px) {
    .home-container-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .logo {
        width: auto;
        align-items: center;
    }

    .app-content {
        margin-top: 2rem;
        padding-left: 0;
    }

    .app-content h1 {
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 1.2rem;
    }

    .button-container {
        margin-top: 1rem;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}