
#home_section {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-auto-flow: row;
    justify-items: center;
    align-items: center;
}

#home_section .text_div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 75%;
}

#home_section .text_div *{
    margin: 5px 3px;
    font-size: 28px;
}

#home_section .text_div .arrow{
    margin: 0 10px 0 0;
}

#home_section img{
    width: 90%;
    height: 80%;
}

@media screen and (max-width: 915px) {
    #home_section {
        grid-template-columns: 1fr;
        min-width: 600px;
    }
    .text_div {
        min-width: 600px;
    }
}