.pagecontainer{
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-direction: row;
    height: 25%;
}

.col-70{
    display: flex;
    width: 69%;
    min-width: 69%;
    max-width: 69%;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

.col-30{
    width: 29%;
    min-width: 29%;
    max-width: 29%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.doctouristtitle{
    display: flex;
    justify-content: center;
    height: 29%;
    min-height: 29%;
    max-height: 29%;
    align-items: center;
    font-weight: 500;
    font-size: 36px;
}
.paragraph{
    display: flex;
    justify-content: center;
    height: 49%;
    min-height: 49%;
    max-height: 49%;
    align-items: center;
}
.buttons{
    display: flex;
    height: 19%;
    min-height: 19%;
    max-height: 19%;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: flex-end;
}

@media only screen and (max-width: 600px) {
    .pagecontainer{
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        flex-direction: column-reverse;
        height: fit-content;
    }

    img{
        position: absolute;
        top: -125px;
    }

    .col-70{
        display: flex;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-direction: column;
        z-index: 9999;
    }

    .col-30{
        padding-bottom: 30px;
        width: 100%;
        min-width:100%;
        max-width:100%;
        justify-content: center;
        align-items: center;
    }

    .doctouristtitle{
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-size: 50px;
        margin-bottom: 10px;
    }
    .paragraph{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        text-align: center;
    }
    .buttons{
        display: flex;
        height: 19%;
        min-height: 19%;
        max-height: 19%;
        justify-content: space-evenly;
        flex-direction: row;
        align-items: flex-end;
    }
}