html,body,p,ul,ol,h1 {
    margin: 0;
    padding: 0;  
}
header,main,footer,nav,section,article,aside {
    display: block;
}

body {
    color: #1E2023;
}

ul,ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #003C90;
}
a > img {
    border: none;
}
button {
    outline: none;
}

.btn {
    display: inline-block;
    width: 160px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #969696;
    border-radius: 8px;
    color: #969696;
    background-color: transparent;
    font-size: 16px;
    text-align: center;
    line-height: 38px;
    outline: none;
    cursor: pointer;
}
.btn-primary {
    border-color: #003C83;
    color: #003C83;
}
