/* <!-- PLATINUM SWORD / website v0.3 / (C) Platinum Sword LLC, 2026 */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
  --textcolor: #6A00E8;
  --bgcolor: black;
  --linkcolor: #A400F3;
  line-height: 100%;
  transition-duration: 0.5s;
}
@font-face {
  font-family: 'IBM_Plex';
  src:url(fonts/IBMPlexSans-VariableFont_wdth\,wght.ttf);
} 
body {
  font-size: 18px;
  font-family: IBM_Plex, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: var(--textcolor);
  background: var(--bgcolor);
  position: relative;
  margin: 0 auto;  
  overflow: hidden;
}
a {
  color: var(--linkcolor);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: cyan;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: violet;
  text-decoration: none;
  cursor: pointer;
}
.halfTextBox {
  background-color: black;
  width: 45%;
}
.allPresentationDivs {
  padding-top: 25%;
  line-height: 2.5vw;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 1.0;
  position: static;
  float: left;
}

#maxDiv {
  background-color: transparent;
  margin: 0 auto;
  margin-top: 5vh;
  width: 98vw;
  height: 100%;
}
#headlineDiv {
  background-color: transparent;
  background-image: url(img/platinumsword7box.png);
  background-size: contain;
  margin: auto;
  width: 96vw;
  height: 48vw;
  max-width: 1200px;
  max-height: 600px;
  flex-direction: row;
  flex-wrap: wrap;
}
#menuDiv {
  padding-top: 25%;
  line-height: 2.5vw;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1.0;
  position: static;
  float: left;
}
#titlesDisplay {
  background-color: transparent;
  line-height: 2.5vw;
  padding-left: 0.5em;
}
.titlesLinks {
  color: white;
  mix-blend-mode: difference;
  font-weight: 500;
  filter: drop-shadow(0px 2px 1px black);
}
