@import "fonts/fonts.css";

*{
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0 none;
    box-sizing:border-box;
    scroll-behavior: smooth;
}

html{
    font-size: 62.5%;
}

body{
    font-family: "nowayregular";
    color:#ffffff;
    font-size:1.6rem;
    line-height: 2rem;
    background:#003D6A;
}

header{
    color:#003D6A;
    background:#ffffff;
    padding:40px;
}

main{
    background:#003D6A;
    color:#ffffff;
    padding:0 40px 40px;
}

.logo img{
    margin-bottom:40px;
    width:250px;
}

h2{
    font-family: "nowaybold";
    color:#65A9D8;
    font-size:2.4rem;
    line-height:3.4rem;
    margin-top:40px;
    margin-bottom:0rem;
    text-transform: uppercase;
}

h1.title{
    font-family: "nowaybold";
    color:#65A9D8;
    font-size:3.2rem;
    line-height:3.6rem;
    text-transform: uppercase;
    margin-bottom:0;
}

a{
    text-decoration:underline;
    color:#ffffff;
}

a:hover{
    text-decoration: none;
}