body{
    padding: 0;
    margin: 0;
    background-color: #e1e1e1;
    font-family: Arial, serif;
}

#content{
    padding: 20px 40px;
    width:calc(100% - 80px);
    min-height: 500px;
    max-width: 900px;
    background-color:white;
    margin: 0 auto;
    box-shadow:0px 14px 34px rgba(0,0,0,0.25) ;
    text-align: center;
}

article{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

article h1{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

article h2{
    font-size: 16px;
    font-weight: bold;
    margin:5px 0;
}

article h3{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: left;
}

article h4{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: left;
}


article p{
   text-align: left;
    line-height: 1.6;
    font-size: 15px;

}

a{
    font-family: Arial, serif;
    font-size: .85rem;
    color: #fff;
    font-weight: bold;
    padding: 20px 40px;
    display: inline-block;
    margin: 20px auto 40px;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color:#3f72be ;
    transition: background-color .6s ease;
}

a:hover{
    background-color: #1e56a2;
    color:white;

}

img{
    width: 100%;
   /* max-width: 600px;*/
}
