/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
}

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;
}

/* Begin GD Style */


@font-face {
    font-family: "Junicode";
    src: url("/res/fonts/Junicode.ttf");
}

@font-face {
    font-family: "Junicode Italic";
    src: url("/res/fonts/Junicode-Italic.ttf");
}

@font-face {
    font-family: "Junicode Bold";
    src: url("/res/fonts/Junicode-Bold.ttf");
}

html {
    --bodycolor: lightgray;
    --bgcolor: #010120;

    color: var(--bodycolor);
    font-family: "Junicode", sans-serif;


    height: 100%;
    background-image: url("/res/images/IMG_3944.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

body {
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
}

.container {
    width: 100%;
}

img {
    filter: brightness(85%);
}

.container center {
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;

    padding-top: 100px;
    padding-bottom: 120px;
    padding-left: 100px;
    padding-right: 100px;
    background-color: #010120ff;
    border-radius: 20px;

    height: 100%;
}

a {
    color: var(--bgcolor);
    background-color: var(--bodycolor);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    border-bottom: 5px solid gray;

    transition: 0.2s;

    text-decoration: none;

    /* margin-bottom: 40px; */
}

a:hover {
    padding-left: 50px;
    padding-right: 50px;
}

.fancy a {
    background-color: lightblue;
    border-bottom: 5px solid cornflowerblue;

}

b,
strong {
    font-weight: bold;
    font-family: "Junicode Bold", sans-serif;
}

i,
em {
    font-style: italic;
    /* font-family: "Junicode Italic", sans-serif; */
}

p,
h1,
h2 {
    margin-bottom: 20px;
}

h1,
h2 {
    margin-top: 30px;
}

p {
    line-height: 25px;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    font-family: "Junicode Bold", sans-serif;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    font-family: "Junicode Bold", sans-serif;
}

hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mobile-only {
    visibility: collapse;
    display: none;
}

.desktop-only {
    visibility: visible;
    display: inherit;
}

@media all and (max-width: 600px) {
    .container center {

        padding-left: 50px;
        padding-right: 50px;
        background-color: #010120ff;
        border-radius: 20px;

        height: 100%;
    }

    html {
        background-color: #010120;
        background-image: none;
    }

    .mobile-only {
        visibility: visible;
        display: inherit;
    }

    .desktop-only {
        visibility: collapse;
        display: none;
    }

}