/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #b4bcc9 #2b251d;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #2b251d;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #b4bcc9;
}

:root {
  --bg-color: #b09cb3;
  --text-color: #2b251d;
}

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

html {
  background:url("bgimgs/mallrooftop.png") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  background-color: var(--bg-color);
}

body {
  color: var(--text-color);
}

.wrapper {
  width: 70%;
  margin: 15px auto;
}

.main-container {
  width: 80%;
  margin: auto;
  padding: 15px;
  background-color: #b4bcc9;
  border-image-outset: 10px;
  border: 10px solid transparent;
  border-image: url("/images/mailborder.png") 15 round;
  box-sizing: border-box;
  box-shadow: #494a69 10px 10px;
}

.center-text {
  text-align: center;
}

h1, h2 {
  font-family: Philibert;
  border-bottom: #2b251d double 7px;
}

h2 {
  width: fit-content;
  border-bottom-style: dashed;
}

h1::before {
  content: "✒";
}

h2::after {
  content: " ✍";
}

a {
  color: inherit;
}

a:hover {
  color: #ae6255;
  font-weight: bold;
}

hr {
  border-bottom: #2b251d double 5px;
}

@media screen and (max-width: 800px) {
html {
  background: url("bgimgs/mallrooftop.png") no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  background-color: var(--bg-color);
}

.wrapper {
  width: 100%;
}

.main-container {
  width: 90%;
  display: block;
}
}
