@charset "utf-8";
/* COLOUR SCHEME 

(DAY) Light Blue #369 / Dark Blue #336 / White and Black / Green #6C3
(NIGHT) Dark Blue #369 / Orange #F60 / Black

#333366
(51,51,102) 

*/
html {
  scroll-behavior: smooth;
  min-height: 100vh;
  max-height: 100vh;
  width: auto;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  margin: 0vh 0vw;
  background-color: black;
}
body {
  background-color: #000;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main {
  min-height: 100vh;
  max-height: 100vh;
  min-width: 100vw;
  max-width: 100vw;
}
.splash {
  position: absolute;
  z-index: 5;
}
.splash img {
  position: absolute;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
}
@media only screen and (max-width: 650px) {
  .splash img {
    min-width: 100vw;
    width: 100vw;
    height: auto;
  }
}
#companyName {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 2rem;
  color: white;
  z-index: 5;
  width: 10vw;
  height: auto;
}
#blogLink {
  text-align: right!important;
  color: white!important;
  text-decoration: none!important;
  z-index: 4;
}
.rebuildScreen img {
  position: absolute;
  width: auto;
  max-height: 100vh;
  height: 100vh;
  right: 0;
}
.rebuildScreen {
  position: absolute;
  width: auto;
  max-height: 100vh;
  height: 100vh;
  right: 0;
}
#logo {
  padding: 0rem 0rem 2rem 0rem;
  width: 7vw;
  min-width: 7vw;
  height: auto;
  vertical-align: middle;
}
#rightContainer {
  position: absolute;
  width: 15vw;
  height: auto;
  background-color: rgba(0, 1, 83, 0.20);
  color: white;
  margin-right: 1.5rem;
  text-align: right;
  padding: 1.5rem;
  z-index: 3;
  bottom: 7rem;
  right: 5rem;
}
#shadowRight {
  top: 1rem;
  left: 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: lightblue;
  opacity: 0.1;
  z-index: 1;
}
#leftContainer {
  position: absolute;
  width: 20vw;
  height: auto;
  background-color: rgba(62, 0, 122, 0.25);
  color: white;
  top: 2rem;
  left: 2rem;
  padding: 1.5rem;
  z-index: 2;
}
@media only screen and (max-width: 650px) {
  #leftContainer {
    position: absolute;
    display: block;
    width: 85vw;
    top: 5vh;
    left: 5vw;
  }
  .mobilePg1 {
    min-width: 100vw;
    min-height: 100vh;
    height: 100vh;
  }
  .mobilePg2 {
    display: none;
  }
}
#shadowLeft {
  left: 1rem;
  top: 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: lightblue;
  opacity: 0.1;
  z-index: 1;
}
.image1 {
  opacity: 0!important;
  z-index: 1;
}
.image1:hover {
  opacity: 1!important;
  transition: 2s;
}
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #fff;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 1px;
}
*::-webkit-scrollbar-track {
  background: #fff;
}
*::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 2em;
  border: 1px solid #fff;
}
