/* source-sans-pro-regular - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
:root{
    --main-brand-color: #0070C0;
    --primary-color: #15171C;
    --secondary-color: #232933;
    --light-secondary-color: #2E3744;
    --text-color: white;
    --secondary-text-color: #B3B4B6;
    --black-text-color: #000000;
}
*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    color: var(--text-color);
}
h1{
    font-size: 60px;
    line-height: 115%;
}
h2{
    font-size: 40px;
    line-height: 115%;
}
h3{
    font-size: 30px;
    line-height: 115%;
}
h4{
    font-size: 22px;
    line-height: 115%;
}
a:link {
	color: var(--secondary-text-color);
    text-decoration: none;
}
a:visited {
	color: var(--secondary-text-color);
    text-decoration: none;
}
a:hover {
	color: var(--main-brand-color);
    text-decoration: none;
}
a:active {
	color: var(--secondary-text-color);
    text-decoration: none;
}
.subheading{
    margin-top: 0px;
    text-align: justify;
    color: var(--text-color);
}
@media(max-width: 800px){
    h1{
        font-size: 8vw;
        text-align: center;
    }
    .subheading{
        text-align: center;
    }
}