@charset "UTF-8";

#about {
    margin: 150px 0 150px 0;
    padding: 0;
    width: 100%;
    height: auto;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#djr_pic {
    margin: 0;
    padding: 0;
    width: 560px;
    height: 850px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#djr_pic_desk {
    margin: 0;
    padding: 0;
    width: 535px;
    height: 760px;
}

#djr_pic_mobile {
    margin: 0;
    padding: 0;
    width: 80%;
    max-width: 310px;
    display: none;
}

#djr_cut {
    margin: 0;
    padding: 0;
    max-width: 135px;
    width: 100%;
    height: 850px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
}

#cutline {
    margin: 0;
    padding: 0;
    width: 1px;
    height: 725px;
    background-color: #E600B1;
}

#djr_txt {
    margin: 0;
    padding: 0;
    max-width: 560px;
    width: 100%;
    height: 850px;
}

#djr_txt h1 {
    margin: 0 0 50px 0;
    padding: 0;
    font-family: "monte-stella", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: white;
    font-size: 56px;
}

#djr_txt p {
    margin: 0;
    padding: 0;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 28px;
    hyphens: auto;
}

@media screen and (max-width: 1359px) {
    #djr_pic {
        height: 600px;
    }
    #djr_pic_desk {
        width: 422px;
        height: 600px;
    }

    #djr_cut {
        height: 600px;
    }
    #cutline {
        height: 515px;
    }

    #djr_txt {
        padding: 0 5% 0 0;
        height: 600px;
    }
    #djr_txt h1 {
        margin: 0 0 25px 0;
        font-size: 42px;
    }
    #djr_txt p {
        font-size: 20px;
    }
}

@media screen and (max-width: 1000px) {
    #about {
        flex-direction: column;
        align-items: center;
    }

    #djr_pic {
        margin: 0 0 60px 0;
        width: 100%;
        height: auto;
        justify-content: center;
    }

    #djr_pic_desk {
        display: none;
    }
    #djr_pic_mobile {
        display: block;
        max-width: 310px;
        max-height: 310px;
        width: 80%;
        height: 80%;
    }

    #djr_cut {
        display: none;
    }

    #djr_txt {
        padding: 0 0 0 0;
        max-width: 80%;
        height: auto;
        text-align: center;
    }

}