@import url('./base-style.css');

.home-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 105px;
}

.me-logo {
    border-radius: 100%;
    width: 30%;
}

.me-name {
    font-size: 1.8em;
}

.me-role {
    font-size: 3.2em;
}

@media screen and (max-width: 1000px) {
    .home-content {
        gap: 40px;
    }

    .me-logo {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .home-content {
        flex-direction: column;
    }

    .home-content .info-section {
        text-align: center;
    }

    .me-logo {
        width: 65%;
    }

    .me-name {
        font-size: 1.6em;
    }

    .me-role {
        font-size: 2.8em;
    }
}

@media screen and (max-width: 400px) {
    .me-logo {
        width: 75%;
    }

    .me-name {
        font-size: 1.4em;
    }

    .me-role {
        font-size: 2.6em;
    }
}