@font-face {
    font-family: "Head1";
    src: url("/imgsAssets/fonts/berryrotunda.ttf");
}
@font-face {
    font-family: "Para";
    src: url("/imgsAssets/fonts/ibm.woff");
}
h1 {
  font-family: 'Head1', cursive;
  color: #ffffff;
  font-size: 50px;
  margin: 0%;
}


body {
  background-color: #000000;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-size: 1920px;
  width: 100%;
  margin: auto;
  color: #9CFF00;
  cursor: url("/imgsAssets/cursor.png"), auto;
}
p {
  font-family: 'Head1';
  font-size: 30px;
  margin: 0%;
}
p2 {
  font-family: 'Para';
  font-size: 30px;
  margin: 0%;
  text-align: right;
}
pre {
  font-family: 'Para';
}
hr {
  color: #ffffff;
  border: 1px solid;
  border-color: #ffffff;
  margin: 1%;
}
::selection {
  background: #ffffff; /* WebKit/Blink Browsers */
  color: black;
}
::-moz-selection {
  background: #ffffff; /* Gecko Browsers */
  color: black;
}

a {
  color: #7800ff;
}

  :root {
    --dialogue-box-height: 350px;
    --dialogue-box-width: 950px;
    --dialogue-box-padding: 40px;
    --portrait-height: 800px;
  }

  .dialogue-container {
    position: absolute;
    left: calc(50% - var(--dialogue-box-width)/2);
    bottom: 40px;
    width: calc(var(--dialogue-box-width) - var(--dialogue-box-padding));
    height: calc(var(--dialogue-box-height) - var(--dialogue-box-padding));
    background-color: rgb(0, 0, 0);
    border: solid 4px #9CFF00;
    border-radius: 0px;
    padding: var(--dialogue-box-padding);
    word-wrap: break-word;
  }

  #dialogue-name {
    font-size: 2.5rem;
  }

  #dialogue-content {
    font-size: 1.3rem;
    margin: 10px;
    animation: typing;
  }

button {
    position: absolute;
    bottom: 40px;
    width: 270px;
    height: 50px;
    text-align: center;
    font-family: Para;
    font-size: 30px;
    color: #7800ff;
    background-color: rgb(0, 0, 0);
    border: solid 4px #9CFF00;
    border-radius: 0;
    padding: var(--dialogue-box-padding);
    bottom: calc(120% - var(--dialogue-box-width)/2);
}
.button1 {
    left: calc(50% - var(--dialogue-box-width)/2);
}
.button2 {
    right: calc(50% - var(--dialogue-box-width)/2);
}

.back {
  width: 150px;
}

@keyframes MoveUpDown {
0%, 100% {
top: 20%;
}
50% {
top: 25%;
}
}
#head {
animation: MoveUpDown 4s linear infinite;
position: absolute;
pointer-events: none;
}

* {
  cursor: url("/imgsAssets/cursor.png"),  auto;
}

a, a:link, button {
  cursor:url("/imgsAssets/cursor_hover.png"), auto;
}