html, body {
  scroll-behavior: smooth;
  background-color: #000000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#canvasParent,#renderCanvas {
  width: 100%;
  height: 100%;
}


/* Document style */

@font-face {
  font-family: aramis;
  src: url(../fonts/aramis.ttf);
}
#scrollDocument {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: aramis;
  font-size: 36px;
}
@font-face {
  font-family: LucySaidOk;
  src: url(../fonts/LucySaidOk.ttf);
}
.header {
  font-family: LucySaidOk;
  font-size: 75px;
  text-align: center;
}
@font-face {
  font-family: chopinscript;
  src: url(../fonts/chopinscript.ttf);
}
.bridegroom {
  font-family: chopinscript;
  font-size: 120px;
  text-align: center;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}
.regulartext {
  color: inherit;
}
.colorbar {
  display: inline-block;
  height: 320px;
  width: 80px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#scrollDocument::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
#scrollDocument {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Form styles */
input, textarea {
  font: inherit;
  border-radius: 0px;  /* Disabling border radius - causes display glitches on firefox */
  border: none;
  border-bottom: 2px solid black;
  background-color: #0000;
  margin-left: 10px;
  text-align: center;
}

button {
  font: inherit;
  border-radius: 0px;  /* Disabling border radius - causes display glitches on firefox */
  border: 4px solid black;
}

/* Replace the checkbox/option due to bug in firefox with round borders */
label {
  cursor: pointer;
}
input[type="checkbox"],input[type="radio"] {
  display: none;
}
input[type="checkbox"] + span,input[type="radio"] + span {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  background: url(../img/checkbox_false.svg) center/80% no-repeat;
}
input[type="checkbox"]:checked + span,input[type="radio"]:checked + span {
  background: url(../img/checkbox_true.svg) center/80% no-repeat;
}


/* Additional styles */

#errorContainer {
  z-index: 999;
  color: #D8000C;
  background-color: #FFBABA;
  padding: 5px;
  position: absolute;
  opacity: 0.9;
  left: 5px;
  top: 5px;
}

#copyright {
  z-index: 999;
  color: #fff;
  padding: 5px;
  position: absolute;
  opacity: 0.2;
  right: 5px;
  bottom: 5px;
  font-weight: bold;
}

/* Override default width of the loading image */
#babylonjsLoadingDiv img,#babylonjsLoadingDiv div:last-child {
  width: 200px !important;
}
