:root {
    --primary-color:#FFF;
    --secondary-color:#1f1f1f;
    --accent:#072359;
    --text-color: #45455d;
    /* --button-color:#fa5b26; */
        --button-color:#c00000;
}
h1{
    font-size: 50px;
    line-height: 60px;
    color: var(--primary-color);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}
h2{
    font-size: 48px;
    line-height: 53px;
    font-weight: 600; 
    font-family: 'Jost', sans-serif;
    color: var(--secondary-color);
}
h3{
    font-size: 27px;
    line-height: 34px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    color: var(--primary-color);
}
h4{
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
h5{
    color: var(--button-color);
    font-size: 20px;
    line-height: 36px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 6px;
}
p{
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 300;
}
.padding-top{
    padding-top: 140px;
}
.padding-bottom{
    padding-bottom: 140px;
}
.generic-button a {
    background: transparent;
    padding: 7px 22px;
    text-decoration: none;
    color: var(--accent);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    border: 1px solid var(--accent);
    transition-duration: .4s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.generic-button a:hover{
    /* background: var(--button-color); */
    background-color: #c00000;
    color: var(--primary-color);  
    transform: translateY(-8px);
    transition-duration: .4s;
    transition-property: transform;
    box-shadow: none;
    border-color: transparent;
}