@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');
body {
    width: 100vw;
    height: 100vh;
    background: url(images/bg2.png) right no-repeat, url(images/bg1.jpg) center no-repeat;
    background-size: auto 100%, cover;
    overflow: hidden;
}

#content {
    font-family: Open Sans;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 15vw;
    height: 100vh;
    width: 20vw;
}

.heading {
    margin: 20px 0 5px;
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
}

.mail {
    font-weight: 200;
    color: white;
}

@media (max-width: 1024px) {
    body {
        background: url(images/bg1.png) center no-repeat;
        background-size: cover;
    }

    .heading {
        font-size: 1.2rem;
    }

    #content{
        width: 50vw;
    }
}

@media (min-width: 767.98px){
    .heading {
        font-size: 2rem;
    }

    .mail {
        font-size: 1.4rem;
    }

}