@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
:root {
  height: 100%;
  --blue: rgb(61, 90, 254);
  --light-blue: rgb(33, 150, 243);
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #1d2d4b;
  transition: background-color 0.5s;
  overflow: auto;
}

.splashscreen {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 1; /*test alignment of splashscreen2*/
  text-shadow: black 3px 1px 13px;
}
#Nav-Blur {
  transition: all 0.3s ease-in-out;
  position: fixed;
  position: -webkit-sticky;
  /* -webkit-backdrop-filter: blur(6vmax);
    backdrop-filter: blur(6vmax); */
  overflow: hidden;
  height: 100vh;
  width: 100%;
  transform: translate(0px, -10px);
  z-index: 15;
}
.navigate {
  text-shadow: black 3px 1px 17px;
  padding-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 35px;
  color: white;
}
nav {
  position: fixed;
  background-color: #1d2d4b;
  color: Black;
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  top: 0%;
  left: 0%;
  height: 100vh;
  z-index: 19;
  width: 0;
  opacity: 0;
  font-family: major mono display;
  transition: all 0.3s ease-in-out;
}
nav a {
  padding-top: 15px;
  padding-left: 10px;
  padding-bottom: 15px;
  color: white;
  text-decoration: none;
}
.link {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: block;
  position: relative;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s;
  opacity: 0;
}
.link:nth-child(5) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.link::before {
  transition: width 600ms ease;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    var(--blue) var(--light-blue-percent),
    var(--light-blue)
  );
}
.link:hover::before {
  width: 100%;
}
body[data-nav="true"] nav {
  width: 500px;
  opacity: 1;
}
body[data-nav="true"] .link {
  opacity: 1;
}
body[data-nav="true"] #Nav-Blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#nav-toggle {
  height: 2.5rem;
  width: 2.5rem;
  z-index: 456;
  position: fixed;
  top: 5%;
  left: 5%;
  transform: translateX(-70%);
  bottom: 3rem;
  border-radius: 5rem;
  outline: none;
  border: none;
  box-shadow: 0rem 0rem 4rem rgba(0 0 0 / 35%);
  cursor: pointer;
  transition: transform, background-color;
  transition-duration: 400ms;
}
#nav-toggle:hover {
  transform: translateX(-50%) translateY(50%) scale(1.35);
}
#nav-toggle:active {
  transform: translateX(-50%) translateY(50%) scale(0.95);
}
#nav-toggle i {
  position: absolute;
  top: 13%;
  left: 7%;
  -moz-top: 5%;
  -moz-left: 5%;
  transform: translate(25%, 5%) scale(0.95);
  font-size: 1.75rem;
  transition: all;
  transition-duration: 0.4s;
  opacity: 0;
  z-index: 456;
}
@-moz-document url-prefix() {
  #nav-toggle i {
    position: absolute;
    top: 5%;
    left: 5%;
    transform: translate(25%, 5%) scale(0.95);
    font-size: 1.75rem;
    transition: all;
    transition-duration: 0.4s;
    opacity: 0;
  }
}
body:not([data-nav="true"]) #nav-toggle:hover .open {
  opacity: 1;
}
body[data-nav="true"] #nav-toggle .close {
  opacity: 1;
}
body[data-nav="true"] #nav-toggle {
  transform: translateX(450px);
}
body[data-nav="true"] #nav-toggle:hover {
  transform: translateX(450px) scale(1.35);
}
body[data-nav="true"] #nav-toggle:active {
  transform: translateX(450px) scale(0.95);
}
.title {
  z-index: 0;
  font-family: "Poiret One", cursive;
  color: white;
  text-align: center;
  padding: none;
}
.title-text {
  padding-top: 50px;
  font-size: 130px;
  font-weight: bolder;
}
.title-subtext {
  padding: 15px;
  font-size: 25px;
}
#json-container {
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  font-family: "Poiret One", cursive;
  color: white;
  list-style: none;
  width: 50%;
}
.entry {
  border: none;
  margin-bottom: 10px;
  padding: 10px;
  font-family: Poiret One;
  border-radius: 5px;
}
.version {
  font-size: 40px;
  font-weight: bold;
}
.changes {
  margin-top: 5px;
}
.change {
  margin-bottom: 5px;
}
.type {
  font-weight: bolder;
  margin-right: 5px;
  font-size: 25px;
}
.desc {
  font-size: 20px;
}
ul {
  list-style: none;
}
