body{
    margin: 0;
    font-family: sans-serif;
}
.bg-image{
    width: 100%;
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.container{
    padding: 90px;
}
h1{
    font-size: 50px;
}
p{
    color: grey;
    font-size: 30px;
}
@media(max-width:500px){
    .container{
        padding: 10px;
    }
}