@font-face {
    font-family: "goodFont";
    font-style: normal;
    font-display: swap;
    src:url("/css/fonts/ByPenciljungsuk.woff")format('woff');
}
@font-face {
    font-family: "fugaz";
    font-style: normal;
    font-display: swap;
    src:url("/css/fonts/FugazOne-Regular.ttf")format('ttf');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family:"goodFont", sans-serif;
    box-sizing: border-box;
    font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
    box-sizing: border-box;
}

body {
    background:#f3faff;
    width:100%;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.bodyContainer {
    padding-top:56px;
    padding-bottom: 110px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1024px;
    margin:auto;

}

.footer {
    padding-top: 15px;
    padding-left: 25px;
    height: 65px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: black;
    z-index: 99999;
}

.cre {
    float: left;
    vertical-align: middle;
    margin-left: 10px;
    margin-top:8px;
}

html{
    min-height: 100vh;
}

#salvycon {
    float: left;
    width: 90px;
    height: 35px;
}

details:hover {
    cursor: pointer;
}

b {
    font-family:"fugaz", sans-serif;
}

#loading {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    background-color: rgba(0, 0, 0, 0.2);
}

@keyframes spinner {
    from {transform: rotate(0deg); }
    to {transform: rotate(360deg);}
}

#loading .spinner {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin-top: -32px;
    margin-left: -32px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spinner .8s ease infinite;
}