.a {
    text-decoration: none;
    color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0
}

h1 {
    font-size: 36px;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}

body {
    font-family: Segoe UI Light, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px;
}

.global-btn {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.global-btn a {
    display: inline-block;
    background: rgba(15, 89, 210, 1);
    text-decoration: none;
    border-radius: 5px;
    padding: 13px 25px;
    transition: .3s;
    color: #fff;
}

.global-btn a:hover {
    background: rgba(15, 89, 210, .7);
}