* {
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
}
*:focus {
    outline: none;
}

*, *:after, *:before {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

:root {
    --color-blue: #007AC0;
    --color-blue-light: #438CCA;
    --color-blue-dark: #042945;
    --color-white: #ffffff;
    --color-red: #b60000;
    --color-dgrey: #333333;
    --color-lgrey: #f7f9fa;
    --color-bgrey: #9fadb4;
    --color-blgrey: #bec9cf;
}

@font-face {
    font-family: 'Gotham';
    src: url('../webfonts/subset-Gotham-Book.eot');
    src: url('../webfonts/subset-Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/subset-Gotham-Book.woff2') format('woff2'),
    url('../webfonts/subset-Gotham-Book.woff') format('woff'),
    url('../webfonts/subset-Gotham-Book.ttf') format('truetype'),
    url('../webfonts/subset-Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../webfonts/subset-Gotham-Bold.eot');
    src: url('../webfonts/subset-Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/subset-Gotham-Bold.woff2') format('woff2'),
    url('../webfonts/subset-Gotham-Bold.woff') format('woff'),
    url('../webfonts/subset-Gotham-Bold.ttf') format('truetype'),
    url('../webfonts/subset-Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: bold;
    font-display: swap;
}


body
{
    background-color: var(--color-blue);
    font-size: 15px;
    font-family: 'Gotham', sans-serif;
    color: var(--color-dgrey);
    height: 100vh;
}

h1
{
    font-size: 32px;
    font-weight: normal;
    color: var(--color-dgrey);
}
h2
{
    font-size: 28px;
    font-weight: normal;
    color: var(--color-dgrey);
}

a {
    text-decoration: none;
    transition: 0.4s;
    font-weight:bold;
    color: var(--color-blue);
    margin: 0;
}

.logo {
    width: 250px;
    margin: 30px 65px;
    float: left;
}
