
.home-page {
    background: rgb(36,38,63);
    background: linear-gradient(180deg, rgba(36,38,63,1) 0%, rgba(72,86,125,1) 25%, rgba(111,105,151,1) 50%, rgba(195,169,204,1) 75%, rgba(219,214,211,1) 100%);
    width: 100vw;
    display: grid;
    grid-template-columns: 25% 75%;
}

.compartment {
    width: 80%;
    padding: 25px;
    background-color: #eef0f6;
}

.type-image {
    width: 100%;
    margin-bottom: 5%;
}

.type-text {
    display: flex;
    justify-content: end;
    align-items: end;
}

.main-page-image {
    width: 55%;
}

.compartment-button {
    margin-top: 10px;
}

.teaching-text {
    margin-right: 20px;
}

.options {
    width: 100%;
    display: flex;
    justify-content: center;
}

.options-flex {
    width: 90%;
}

.about-this-section-text {
    padding: 50px;
    background-color: #eef0f6;
}

.the-options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.one-of-the-options {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #eef0f6;
    width: 27%;
    padding: 15px;
    margin-bottom: 30px;
}

.go-to-this-option {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.options-image {
    width: 100%;
    margin-bottom: 5%;
}

.subpage-image {
    width: 100%;
}

.spacer-bar {
    width: 100%;
    height: 50px;
}


@media only screen and (max-width:900px){

    .home-page {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .compartment {
        width: 80%;
        max-width: 400px;
        height: 100%;
        padding: 25px;
        background-color: #eef0f6;
    }

    .options {
        margin-top: 100px;
    }

    .one-of-the-options {
        width: 80%;
        max-width: 300px;
    }
    
}

@media only screen and (max-width:750px){

    .the-options {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        margin-top: 30px;
    }

}