:root {
    --primary-color:#FFF;
    --secondary-color:#031736;
    --accent:#2549a3;
    --text-color: #6d7e99;
    --button-color:#2880fc;
}
h1{
    font-size: 88px;
    line-height: 82px;
    color: var(--primary-color);
    font-weight: 700; 
}
h2{
    font-size: 55px;
    line-height: 54px;
    font-weight: 700; 
    color: var(--secondary-color);
}
h3{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}
h4{
    font-size: 26px;
    line-height: 28px;
    font-weight: 700; 
    color: var(--secondary-color);
}
h5{
    color: var(--accent);
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}
p{
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text-color);
}
.padding-top{
    padding-top: 130px;
}
.padding-bottom{
    padding-bottom: 130px;
}
.generic-button a{
    background: var(--accent);
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 22px;
    margin-right: 10px;
    transition-duration: .4s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.generic-button a:hover{
    background: #2880fc;
    color: var(--primary-color);
    border: none;    
    transform: translateY(-8px);
    transition-duration: .4s;
    transition-property: transform;
    box-shadow: none;
}
a{
    text-decoration: none;
}