html, body {
    background-color: #0b0b45 !important;
}


.biodata-home {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100vw;
    background-color: #0b0b45;
    margin-top: 7rem;
    color: white;
    margin-bottom: 100px;
}
.photo {
    width: 30vw;
}
.photo img {
    height: 20rem;
    border-radius: 100%;
    margin-left: 5rem;
}
.detail-photo {
    width: 70vw;
    margin-left: 3rem;
    margin-right: 7rem;
    text-align: justify;
}
.detail-photo h1 {
    font-size: 5rem;
    font-weight: bold;
}
.detail-photo h3 {
    font-size: 1.4rem;
    font-weight: bold;
}

@media (max-width: 768px) {

    .biodata-home {
        display: flex;
        flex-direction: column;
        height: 1300px;
        width: 100vw;
        background-color: #0b0b45;
        margin-top: 7rem;
        color: white;
    }
    .photo {
        width: 30vw;
    }
    .photo img {
        height: 20rem;
        border-radius: 100%;
        margin-left: 1.8rem;
    }
    .detail-photo {
        width: 90vw;
        margin-left: 1rem;
        margin-right: 1rem;
        text-align: justify;
    }
    .detail-photo h1 {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
    }
    .detail-photo h3 {
        font-size: 1.4rem;
        font-weight: bold;
    }
}