@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,700&display=swap");

body {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    background-color: #1B1B1B;
}

.background {
    width: 100vw;
    height: 100vh;
    position: absolute;
}

.phones {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100vh;
}

.checks li::before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url("../media/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 0.5em -0.25em -1em;
}

.checks li {
    margin-left: 20px;
    list-style: none;
    text-decoration: none;
}

.content {
    position: relative;
    display: flex;
    margin: 100px 100px;
    flex-direction: column;
    justify-content: center;
}

.info-logo {
    width: 400px;
    height: 200px;
}

.info-text {
    color: whitesmoke;
    font-size: 18px;
    line-height: 1.5rem;
}

.buttons {
    display: flex;
    padding: 10px 0;
}

.appstore {
    width: 200px;
    height: 100px;
    margin-right: 100px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    body {
        overflow-y: auto;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phones {
        display: none;
    }

    .content {
        margin: 0 20px;
    }

    .info-logo {
        width: 75%;
        max-width: 400px;
        margin: 0 auto;
    }

    .info-text {
        font-size: 18px;
        line-height: 1.5rem;
    }

    .checks {
        padding-inline-start: 10px;
    }

    .appstore {
        width: 140px;
        height: 50px;
        margin-right: 10px;
    }
}
