#start {
    padding-top: 5%;
}

.text {
    position: absolute;
    width: 58%;
    left: 0;
    padding-left: 1%;
    padding-right: 1%;
}

.img {
    position: absolute;
    width: 38%;
    right: 0;
    padding-left: 1%;
    padding-right: 1%;
}

.img img {
    width: 100%;
    border-radius: 1%;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4px;
    margin-top: 2px;
}

h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4px;
    margin-top: 4px;
}

.heading-background {
    background-color: #225045;
    color: #ECEBE4;
    padding: 5px;
    border-radius: 5px;
}

p {
    font-size: 20px;
    padding-left: 10px;
    margin: 5px ,10px;
    line-height: 1.5;
}

li {
    font-size: 20px;
    padding-bottom: 5px;
    line-height: 1.5;
}

/* TABLET VIEW */
@media (max-width: 1024px) {
    #start {
        margin-top: 3%;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 18px;
    }

    li {
        font-size: 18px;
    }

    .text {
        width: 50%;
    }

    .img {
        width: 46%;
    }
}

/* PHONE VIEW */

@media (max-width: 560px) {
    .img {
        position: default;
        width: 100%;
        left: 1px;
        padding-left: 1%;
        padding-right: 1%;
    }
    .text {
        padding-top: 140%;
        width: 100%;
    }
}