html, body {
    padding: 0px;
    margin: 0px;
    background-color: #f0f0f0;
    color: #333;
    height: 100%;
}

body {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 18px;
}

* {
    box-sizing: border-box;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
}

a.link {
    text-decoration: underline;
}

a.link:after {
    content: url('/img/icons/link.svg');
    margin-left: 4px;
    vertical-align: middle;
    margin-right: 4px;
}


h1 {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1px;
    padding: 0px 0px 10px 0px;
}

h2 {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 20px;
    padding: 10px 0px 10px 0px;
    margin: 0px;
    display: block;
    width: 100%;
}

h3 {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0px 10px 0px;
    margin: 0px;
    display: block;
    width: 100%;
}

.center {
    text-align: center;
}

.hidden {
    display: none !important;
}

#full_page_waiting {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

#full_page_waiting img {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    max-width: 80%;
}