@import url("/assets/fonts/notoserif/notoserif.css");
@import url("/assets/fonts/bootstrap/bootstrap-icons.css");
:root {
    --main-font-family: "Noto Serif";
}
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}
html {
    background-color: #384261;
    background-image: url("/assets/white-diamond.png");
    background-size: auto;
    text-align: center;
    -webkit-animation: slide 60s linear infinite;
    animation: slide 60s linear infinite;

    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
@-webkit-keyframes slide {
    from { background-position: 0 0; }
    to { background-position: -1280px -1120px; }
}
@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: -1280px -1120px; }
}
p, li, ul, address, h1, td {
    color: #ffffff;
    font-family: var(--main-font-family);
}
address {
    color: #ffffff77;
}
a {
    font-family: var(--main-font-family);
    color: #158a67;
    transition: color 0.3s;
}
a:hover {
    color: #094231;
}
#top-bar {
    position: fixed;
    background-color: #1a1a1a;
    width: 100%;
    height: 24px;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 20;
}
body {
    width: 800px;
    height: auto;
    background-color: #1a1a1a44;
    margin-left: 10px;
    padding: 10px;
    border: #0000003a 1px solid;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
}
table {
    width: 100%;
}
