* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: #f5f5f5;
    min-height: 100vh;
}

.main_div {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.img_div,.text_div {
    width: 48%;
}


.text_div p {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin-top: 30px;
    padding: 10px;
}

.text_div a {
    text-decoration: none;
    background: rgba(255, 113, 94, 0.500);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.text_div a:hover {
    background: rgb(255 114 94);
}

.red {
    color: red;
}

@media screen and (max-width: 425px) {
    .main_div {
        flex-direction: column;
        padding: 0;
        height: 100vh;
    }

    .img_div {
        /* background-color: red; */
        width: 100%;
        text-align: center;
        height: 50vh;
        overflow: hidden;
    }

    .img_div img {
        width: 100%;
    }
    
    .text_div {
        width: 100%;
        text-align: center;
        height: 50vh;
    }

    .text_div h1 {
        font-size: 19px;
    }

    .text_div p {
        font-size: 14px;
    }
}