body {
    background-image:url('background.png');
    background-size:cover;
    background-attachment:fixed;
    background-position:center center;
    height: 100vh;
}

.contentBlock{
    box-shadow: 0px 15px 15px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px; 
    background-color: rgba(255,255,255,1); 
    height:100%;
}

.contentBlockText{
    color:#fff;
    background-color:#f1f1f1;
    padding:15px;
    border-radius:10px 0 0 10px;
    background-size:cover;
    background-position:center center;
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.contentBlockText h2{
    font-size:32px;
}
.contentBlockText p{
    font-size:24px;
    line-height:28px;
    margin-top:36px;
}
.btn-primary {
  background-color: #640e10 !important;
  border-color: #640e10 !important;
  color: #fff !important;
    width:100%;
}

.btn-primary:hover {
  background-color: #4b0c0c !important;
  border-color: #4b0c0c !important;
  cursor: pointer;
}

@media all and (max-width:720px){
    .w-50{
        width:100% !important;
    }
    .d-flex{
        flex-direction:column;
    }
    img{
        max-width:100%;
    }
}