body{
    font-family: poppins;
    background-image: url('8331738.jpg');
    background-position: center;
    background-size: cover;
}
h1,h2,h3{
    color: black;
    text-align: center;
}
#container{
    border: 0px solid red;
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    gap: 20px;
    border-top: 2px solid lightgray;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 15px;
}
#child1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    border: 0px solid blue;
    border-right: 2px solid lightgray;
    padding-right: 5%;
    background-color: rgb(201, 240, 255);
    border-radius: 15px;
}
#child1 > div{
    border: 0px solid green;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;    border-radius: 15px;
}
#child1 > div >h3,p,h2{
    margin: 0%;
}
.img{
    width: 100%;
    border-radius: 15px 15px 0px 0px;
}
#child2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    border: 0px solid blue;
    background-color: rgb(201, 240, 255);
    opacity: 0.65;
    border-radius: 15px;
}
#child2 > div > div{
    border: 0px solid green;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4%;
}
#child2 > div{
    border: 0px solid brown;
    padding: 0%;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;    border-radius: 15px;
}

@media all and (min-width: 769px) and (max-width: 1024px){
    #child1{
        grid-template-columns: 1fr;
        gap: 8px;
    }
    #child2{
        grid-template-columns: 1fr;
        gap: 8px;
    }
    #container{
        width: 85%;
    }
    body{
        background-image: url('wp5272655.jpg');
        background-position: center;
        background-size: cover;
    }
}
@media all and (min-width: 320px) and (max-width: 768px){
    #child1{
        grid-template-columns: 1fr;
        gap: 5px;
    }
    #child2{
        grid-template-columns: 1fr;
        gap: 5px;
    }
    #container{
        width: 90%;
    }
    body{
        background-image: url('wp5272655.jpg');
        background-position: center;
        background-size: cover;
    }
}