@import url(./styles.css);

.content.active {
    flex-direction: row;
}

.home-text,
.home-image {
    flex: 1;
}

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

.home-text p {
    /*20xp*/
    font-size: 1.25rem;
    text-transform: capitalize;
}

.home-text h1 {
    /*50px*/
    font-size: 3.125rem;
}

.home-text h2 {
    /*25px*/
    font-size: 1.5625rem;
    margin-bottom: var(--margin);
}

.home-text .btn-one {
    margin-right: var(--margin);
}

.image-box {
    background-color: var(--background-color);
    border-radius: var(--border-radius-circle);
    border: var(--border);
    margin: 0 auto;
    max-width: 360px;
}

.image-box img {
    border-radius: var(--border-radius-circle);
}

/*380px*/
@media screen and (max-width: 23.75em) {
    .home-text .btn-one {
        margin-right: 0;
    }
}

/*912px*/
@media screen and (max-width: 57em) {
    .content.active {
        flex-direction: column-reverse;
    }

    .home-text p {
        /*16xp*/
        font-size: var(--font-size);
        text-transform: capitalize;
    }

    .home-text h1 {
        /*40px*/
        font-size: 2.5rem;
    }

    .home-text h2 {
        /*20px*/
        font-size: 1.25rem;
    }
}
