/**
 * Dark theme variables
 */
 @font-face {
    font-family: 'Syntetic'; /*a name to be used later*/
    src: url("/assets/fonts/SynteticAsrocuus.otf"); /*URL to font*/
}
/*!
 *  Hack typeface https://github.com/source-foundry/Hack
 *  License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md
 */
/* FONT PATHS
 * -------------------------- */
 @font-face {
  font-family: 'Hack';
  src: url('https://guestbook.oomfie.club/hack-regular.woff2') format('woff2'), url('https://guestbook.oomfie.club/hack-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display:"swap";
}

@font-face {
  font-family: 'Hack';
  src: url('https://guestbook.oomfie.club/hack-bold.woff2') format('woff2'), url('https://guestbook.oomfie.club/hack-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display:"swap";
}
* {
    font-family: Hack !important;
    font-size: 8pt;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}

body, html {
    text-align: center;
    background-color: #000000 !important;
}

body {
    margin: 0;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url("../resources/guestbook.gif");
}

h1 {
    font-size: 26px !important;
    margin: 0px;
    margin-top: 0px;
    font-weight: bold!important;
    color: #ffffff!important;
    filter: drop-shadow(white 0px 0px 2px)!important;
}

a {
    text-decoration: none !important;
    color: #e0dff5!important;
}
p {
    color: white !important;
  }
.container {
    width: 550px;
    min-width: 550px;
    margin: 0 auto;
    background: rgb(0, 0, 0)!important;
    color: #ffffff!important;
}

.data * {
    font-size: 7pt;
    margin: 2px 0px;
}

.meta {
    background: #000066!important;
    border-bottom: 1px solid #C0C0C0;
    padding: 4px;
    display: flex;
    gap: 5px;
}

.message p {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

.meta-keys p {
    font-weight: bold;
}

.message {
    outline: 1px solid #ffffff!important;
}

.message {
    width: 490px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 15px;
}

.message-content {
    background: #000000!important;
    padding: 5px;
}

.messages {
    margin-top: 25px;
}

.postnew {
    margin-bottom: 15px;
}

form {
    text-align: left;
    width: 320px;
    margin: 0;
}

.form {
    width: 490px;
    padding: 15px;
    margin: 0 auto;
    border: 1px solid #454545!important;
}

p.heading {
    font-size: 13pt;
    font-weight: bold;
    width: fit-content;
    margin: 0;
    margin-bottom: 20px;
}

.back {
    padding: 10px 0px;
    margin: 0;
}

.meta a {
    width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    word-wrap: normal;
}

textarea {
    resize: none;
}

label {
    width: 70px;
    display: inline-block;
    margin-top: 2px;
    line-height: 18px;
    margin-bottom: 6px;
    font-weight: bold;
}

input[type="text"], textarea {
    width: 240px;
}

input[type="text"] {
    height: 21px;
    margin-bottom: 5px;
}

textarea {
    height: 120px;
}

.poster-meta {
    width: 70px;
}

.poster-inputs {
    width: 240px;
    display: inline-block;
}

.poster {
    display: flex;
}

.buttons {
    margin-top: 15px;
    margin-left: 70px;
}

.no-messages {
    margin-bottom: 25px;
}

.container {
    width: 100% !important;
    min-width: unset !important;
  }
  
  .message, .form {
    width: 90% !important;
  }