*, ::after, ::before{
    box-sizing: border-box;
}
html, body{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}
.dark-theme, .dark-theme .copyright{
    color: #fff;
}
.dark-theme .divider.line::before{
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6, p, span, a, li, option, input, textarea, select, option, label{
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    --webkit-font-smoothing: antialized;
}
p, span, a, li, option, input, textarea, select, option, label{
    font-size: 1.125rem;
    line-height: 2rem;
}
h1.page-title{
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 1.875rem;
}
.center, .under-maintenance{
    text-align: center;
}
.relative, .divider, .section{
    position: relative;
}
.divider{
    display: block;
    width: 100%;
    height: 1.875rem;
}
.divider.line::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 0.063rem;
    background-color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg-backdrop{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    background-image: url(../img/bg-under-maintenance.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.copyright{
    padding: 1rem 0 1.875rem;
}
.under-maintenance{
    height: calc( 100vh - 108px );
}