body{
    /* background-image: url('../img/background.png');
    background-position: 0%;
    background-repeat: no-repeat;    
    position: absolute;
    height: 100vh;
    overflow: scroll; */
    display: flex;
    width: 100%;
    margin: 0;
}
.bg {
    /* background: linear-gradient(335deg, rgba(255,140,107,1) 0%, rgba(255,228,168,1) 100%); */
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-size: cover;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -1;
  }
.content{
    position: absolute;
    /* margin-top: 5rem; */
    left: 0%; 
    /* transform: translateX(-50%); */
    width: 60%;
    padding: 0 20%;
}
.bg_image{
    width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 540px){
    .content{
        padding: 0;
        width: 100%;
    }
}


@media screen and (min-width: 540px) and (max-width: 800px){
    .content{
        padding: 0 10%;
        width: 80%;
    }
}