.hero-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-message {
    font-weight: 600;
    font-size: var(--font-size-hero);
    color: var(--theme-light-base-color);
}

.hero-message-container {
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: var(--theme-border-radius);
}

.hero-image-container {
    left: 0;
    top: 0;
    height: 100%;
    padding: 0;
}

@media only screen and (max-width: 800px) {
    .hero-message {
        font-size: 5vw;
    }
}