.main-page-start {
    padding-left: 10%;
    width: 40%;
}

.page-title {
    font-size: 38px;
    font-family: Martel;

}

.base-text {
    text-align: left;
    font-family: Quicksand;
    font-size: 24px;
}

.main-page-core-text {
    padding-top: 5%;
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    width: 25%;
}

.main-page-core-header {
    font-family: Karla;
    font-size: 32px;
    font-weight: 500;
}

.text-img-seperator {
    display: flex;
    flex-direction: row;
    padding-bottom: 5%;
}

.core-img {
    width: 40%;
    margin-left: 15%;
    border-radius: 2%;
}

.top-img {
    position: absolute;
    width: 25%;
    left: 70%;
    top: -2%;
}

@media (max-width: 600px) {
    .main-page-start {
        width: 90%;
        padding: 5%;
    }

    .page-title {
        font-size: 28px;
        text-align: center;
    }

    .base-text {
        padding: 0;
        font-size: 18px;
        width: 100%;
        text-align: left;
    }

    .main-page-core-text {
        width: 90%;
        padding: 5%;
        text-align: left;
    }

    .main-page-core-header {
        font-size: 24px;
        text-align: center;
    }

    .text-img-seperator {
        flex-direction: column;
        align-items: center;
    }

    .core-img {
        display: none; /* Hide the core image on mobile */
    }

    .top-img {
        width: 0%;
        height: 0%;
        position: inherit;
        display: block;
        visibility: hidden;
    }
}