html,
body {
    min-width: 100%;
    margin: 0;
    padding: 0;
}

/* * {
    box-sizing: border-box;
} */

#main {
    color: #fff;
    min-height: 100vh;
    background-color: #000 !important;
    font-family: 'Inter', Courier, monospace !important;
}

.txt-color-theme {
    color: #00eec3;
}

.txt-center {
    text-align: center;
}

.vv-main {
    width: 100%;
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.vv-section {
    display: block;
    flex: 1;
    padding: 1rem;
}

.vv-img-divider {
    height: 85vh;
}

.vv-content {
    display: block;
    margin: 0 auto;
    --vv-content-width: 350px;
    width: var(--vv-content-width);
}

.vv-content p {
    text-align: start;
}

.vv-form {
    width: var(--vv-content-width);
}

.vv-submit {
    width: var(--vv-content-width);
    --vv-submit-height: 50px;
    height: var(--vv-submit-height);
    margin: 15px auto;
    display: block;
    background-color: #00eec3;
    color: #000;
    font-weight: 550;
    padding: 0.25rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: calc(var(--vv-submit-height) * 0.3);
}

.vv-email {
    box-sizing: border-box;
    width: var(--vv-content-width);
    --vv-email-height: 50px;
    height: var(--vv-email-height);
    margin: 15px auto;
    color: #fff;
    background-color: #000;
    display: block;
    border: 1.5px solid #00eec3;
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    font-size: 1rem;
    border-radius: calc(var(--vv-email-height) * 0.3);
}

.vv-h1 {
    margin: 0 auto;
    width: 300px;
    font-weight: 550;
    --vv-h1-size: 4.5rem;
    font-size: var(--vv-h1-size);
}

.vv-h1 .vv-h1-logo {
    vertical-align: middle;
    width: calc(var(--vv-h1-size) * 0.85);
}

#vvRobotContainer {
    margin: 0 auto;
    background-image: url(../assets/img_bot-bg.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 1rem;
}

#vvRobot {
    display: block;
    margin: 0 auto;
    width: 40%;
}

.vv-footer {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.vv-features {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.vv-features-list {
    padding-inline-start: 0;
    margin: 1rem;
    list-style: none;
    width: fit-content;
}

.vv-features-list li {
    background-size: contain;
    text-indent: 2rem;
    background-repeat: no-repeat;
    background-position: top left;
    margin: 1.5rem 0;
}

.vv-features-list li:last-child {
    margin-bottom: unset;
}

li.write-text {
    background-image: url(../assets/icons/icon_text.webp);
}

li.generate-image {
    background-image: url(../assets/icons/icon_generate.webp);
}

li.make-summaries {
    background-image: url(../assets/icons/icon_summaries.webp);
}

li.improve-emails {
    background-image: url(../assets/icons/icon_emails.webp);
}

li.create-posts {
    background-image: url(../assets/icons/icon_socmed-posts.webp);
}

li.produce-stories {
    background-image: url(../assets/icons/icon_produce-stories.webp);
}

li.create-plan {
    background-image: url(../assets/icons/icon_iteneraries.webp);
}

li.translate {
    background-image: url(../assets/icons/icon_translate.webp);
}

li.write-essays {
    background-image: url(../assets/icons/icon_essays.webp);
}

li.compose {
    background-image: url(../assets/icons/icon_lyrics.webp);
}

.vv-footer a {
    color: #fff;
    text-decoration: none;
}

.vv-footer a:focus,
.vv-footer a:hover {
    color: #00eec3;
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .vv-img-divider {
        display: none;
    }

    .vv-main {
        flex-direction: column;
    }
}

@media screen and (max-width: 530px) {
    .vv-features {
        flex-direction: column;
    }

    .vv-features-list {
        margin-bottom: 0;
        margin-top: 0;
    }
}

@media screen and (max-width: 470px) {}