body {
    height: 100%;
    margin: 0;
    font-size: 700px;
    white-space: nowrap;
    white-space: normal;
    text-transform: uppercase;
    font-family: 'Baloo Bhaijaan 2', cursive;
}

.parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    overflow: scroll; 
    }

.div1 { 
    grid-area: 20 / 1 / 1 / 2; 
    overflow: scroll; 
    text-align: justify; 
    overflow: hidden;
    color:#FFE652;
}

.div2 { 
    overflow: scroll; 
    font-size: 770px;
    color: white;
    margin-top: -50px;
    grid-area: 1 / 1 / 2 / 2; 
    -ms-overflow-style: none; 
    scrollbar-width: none;
    }

::-webkit-scrollbar {
    display: none;
}