/* Variables */
:root {
  --Text-Color: rgb(205, 179, 83);
  --Text-Font: "OCR-A-Regular";
}
/*  */

/* Fonts */
@font-face {
  font-family: "OCR-A-bt";
  src: url(Fonts/ocr/OCR-A-bt.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-A-Regular";
  src: url(Fonts/ocr/OCR-A-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-A";
  src: url(Fonts/ocr/OCR-A.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-ABT";
  src: url(Fonts/ocr/OCR-ABT.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-Aregular";
  src: url(Fonts/ocr/OCR-Aregular.ttf) format("truetype");
}
@font-face {
  font-family: "NotBeast";
  src: url(Fonts/NotBeast.ttf) format("truetype");
}
@font-face {
  font-family: "Golden-Varsity_Outline";
  src: url(Fonts/golden_varsity/Golden\ Varsity\ Outline.ttf) format("truetype");
}
/*  */

/* Elements */
body {
  background-color: black;
  color: var(--Text-Color);
  font-family: var(--Text-Font);
  font-size: 1cm;
  text-align: center;
  margin: 0;
}
div {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
p {
  margin: 0;
}
/*  */

/* Test */
#mydiv {
  position: absolute;
  z-index: 9;
  text-align: center;
}

#mydivheader {
  padding: 10px;
  cursor: move;
  z-index: 10;
}
/*  */

/* Classes */
.Main-Container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}
.Title-Text {
  margin-top: 5cm;
  margin-bottom: 0;
  font-size: 3.5cm;
  color: rgb(255, 42, 0);
  background-color: rgba(0, 0, 0, 0.465);
  font-family: "Golden-Varsity_Outline";
  text-decoration: underline;
  text-decoration-thickness: 0.1cm;
  text-underline-offset: 0.15cm;
}
.Text-Box {
  position: absolute;
  width: max-content;
}
.Main-Text-Title {
  position: absolute;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.08cm;
  font-size: 1cm;
  margin-bottom: 0.25cm;
}
.Main-Text {
  position: absolute;
  text-align: left;
  font-size: 1cm;
}
.Main-Text:link {
  color: var(--Text-Color);
}
.Main-Text:visited {
  color: var(--Text-Color);
}
.Main-Text:hover {
  color: rgba(131, 102, 0, 0.869);
  transition: 300ms;
}
.Login-Container {
  position: relative;
  background-color: rgba(0, 0, 0, 0.885);
  border-style: double;
  border-width: 0.2cm;
  border-color: var(--Text-Color);
  font-size: 0.75cm;
  width: auto;
  top: 1cm;
  padding: 5cm;
  padding-bottom: 0.25cm;
  padding-top: 0.5cm;
}
.Login-Heading {
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.05cm;
  font-size: 1cm;
  margin-bottom: 0.25cm;
}
.Logged-Out-Message {
  text-align: center;
  font-size: 1.25cm;
  margin-bottom: 0.25cm;
}
.Login-Label {
  font-size: 0.65cm;
  width: 5.5cm;
  align-self: self-start;
  text-align: left;
}
.Login-Text-Box {
  color: white;
  background-color: var(--Text-Color);
  border-style: solid;
  border-radius: 0.1cm;
  border-color: rgb(157, 189, 51);
  border-width: 0.1cm;
  width: 5.5cm;
  height: 0.5cm;
  margin: 0;
  margin-bottom: 0.2cm;
}
.Login-Submit {
  color: rgb(53, 57, 5);
  font-family: var(--Text-Font);
  font-weight: bold;
  background-color: var(--Text-Color);
  border-style: solid;
  border-radius: 0.1cm;
  border-color: rgba(157, 189, 51, 0);
  border-width: 0.1cm;
  font-size: 0.4cm;
  height: 1cm;
  width: 3cm;
  margin: 0;
  transition-duration: 0.3s;
}
.Login-Submit:hover {
  cursor: pointer;
  height: 1.1cm;
  width: 3.3cm;
  font-size: 0.44cm;
  background-color: rgb(132, 134, 1);
}
.Login-Submit-Container {
  margin-top: 0.25cm;
  margin-bottom: 0;
  padding: 0;
  width: auto;
  height: 1.25cm;
}

/* Background and Title */
.Title {
  height: 6cm;
  position: absolute;
}
.Elden-Ring-Background {
  height: 20cm;
  top: 5cm;
  z-index: -1;
  position: absolute;
}
