body
{
    min-height:100vh;
    margin:0;
    display:flex;
    flex-direction:column;
    font-family:Montserrat, sans-serif;
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) , url("../images/bgimg.jpg");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
}
header,footer
{
    background-color:#f60;
    display:flex;
    align-items: center;
    justify-content:center;
    padding:20px 0;
    min-height:50px;
}
.call-link 
{
    display: flex;
    align-items: center;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 600 !important;
    text-decoration: none;
    margin-right: 20px !important;
    flex-direction: row !important;
}
.call-link div 
{
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    text-align: left;
}
.call-link img 
{
    height: 50px;
}
.content
{
    flex:1;
    max-width:800px;
    margin:100px 15px;
    background:rgba(200,200,200,0.8);
    padding:30px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-between;
    align-self:center;
    border-radius:10px;
}
.topic
{
    font-size:28px;
    font-weight:600;
    text-align:center;
}
.bfits
{
    display:flex;
    justify-content:space-between;
    font-size:16px;
    min-width:80%;
    margin:10px 0;
    font-weight:500;
}
.support
{
    font-size:25px;
    font-weight:600;
    text-align:center;
}
.call-btn
{
    margin:10px 0;
    padding:15px;
    width:100%;
    background-color: #f60; 
    display:flex;
    justify-content:center;
    color:#ffffff;
    font-weight:600;
    font-size:18px;
    border-radius:8px;
}
@media screen and (max-width:500px) 
{
    
    .content{margin:30px 15px; flex:0.3;padding:30px 25px;}
    .topic{font-size:24px}
    .support{font-size:22px}
    footer{position:absolute;bottom:0;width:100%;}
    .bfits{text-align:center;font-size:16px;min-width:100%;flex-direction:column;}
    .bfits span{margin:5px 0;}
    .call-link{font-size:16px;}
    .call-link img{height:35px;}
}