@import url("https://fonts.googleapis.com/css?family=Poppins:700&display=swap&effect=fire-animation|fire");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,200;0,300;0,400;0,700;1,400;1,700&display=swap&effect=fire-animation|fire|3d|3d-float");
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css");
:root {
  --bg-color: rgb(30, 30, 30);
}

* {
  margin: 0px;
  padding: 0px;
  font-family: "IBM Plex Sans";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
}

body {
  background-color: var(--bg-color);
  background-image: url("/assets/coolBG.png");
  background-position: center;
  background-repeat: repeat;
  background-size: auto;
}

nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  -webkit-box-shadow: 0px 0px 5px 1px var(--bg-color);
          box-shadow: 0px 0px 5px 1px var(--bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  background-color: #2b2b2b;
  text-transform: uppercase;
  margin: 0 0 5.5vh 0;
  -webkit-transition: -webkit-transform ease-out 500ms;
  transition: -webkit-transform ease-out 500ms;
  transition: transform ease-out 500ms;
  transition: transform ease-out 500ms, -webkit-transform ease-out 500ms;
  z-index: 99;
}

nav .logo img {
  height: 2.5rem;
}

nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 70%;
  vertical-align: middle;
}

nav .nav-links li {
  list-style: none;
}

nav .nav-links,
nav .nav-links a {
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  margin: 0px;
  letter-spacing: 0.02rem;
  font-size: 1rem;
}

nav .burger {
  display: none;
}

nav .burger * {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 3rem;
  height: 0.3rem;
  margin: 0.4rem;
  border-radius: 10rem;
  background-color: #ffffff;
}

nav .burger.toggle .line1 {
  -webkit-transform: rotate(45deg) translateX(0.87rem);
          transform: rotate(45deg) translateX(0.87rem);
}

nav .burger.toggle .line3 {
  -webkit-transform: rotate(-45deg) translateX(0.87rem);
          transform: rotate(-45deg) translateX(0.87rem);
}

nav .burger.toggle .line2 {
  opacity: 0;
}

@media screen and (max-width: 992px) {
  img.bigArtImages:hover {
    -webkit-transform: none;
            transform: none;
  }
  body {
    overflow-x: hidden;
  }
  div.burger {
    display: block;
  }
  .nav-links {
    pointer-events: none;
    position: absolute;
    height: 92vh;
    top: 4rem;
    z-index: 98;
    background-color: #2b2b2b;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    opacity: 0;
    -webkit-transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom-right-radius: 3vh;
    border-bottom-left-radius: 3vh;
    height: 65vh;
    padding: 0;
    pointer-events: none;
    border-top: 0.15rem solid white;
    border-bottom: 0.25rem solid white;
    width: 100% !important;
    margin-top: -1rem;
  }
  .nav-links li {
    opacity: 0;
    width: 100%;
    text-align: center;
  }
  .nav-links li:hover {
    background-color: #00000000;
  }
  .nav-links ul {
    width: 100%;
  }
  .formal p {
    text-align: left;
  }
}

@media screen and (min-width: 1400px) {
  img.bigArtImages:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.nav-active {
  -webkit-transform: none;
          transform: none;
  pointer-events: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    display: -webkit-box;
    display: flex;
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@-webkit-keyframes navDown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes navDown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.artStuff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.bigArtImages {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 1.5rem;
  border: 0.125rem solid #494949;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0.5rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 18rem;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  max-width: 95vw;
}

.img {
  padding: 0;
  width: 40rem;
}

h3 {
  height: 4rem;
  font-size: 2rem;
  padding: 0.4rem 0;
  text-align: center;
  color: white;
  font-weight: 700;
}

h3.susbTitle {
  height: 2vh;
  font-size: 4vh;
  padding-bottom: 8vh;
  text-align: center;
  color: white;
}

.divider {
  height: 0.5vh;
  background-color: white;
}

.pad80 {
  padding: 10vh 10vw;
}

.underDev {
  font-size: 1.4em;
  background-color: #ffcb5c;
  width: 400px;
  height: 300px;
  padding: 30px;
}

.projectlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gameButton img {
  height: 10rem;
  padding: 1vh 1vw;
  -webkit-transition: -webkit-transform 60ms ease-in-out;
  transition: -webkit-transform 60ms ease-in-out;
  transition: transform 60ms ease-in-out;
  transition: transform 60ms ease-in-out, -webkit-transform 60ms ease-in-out;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.gameButton img:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.disable {
  display: none;
}

.block {
  padding: 0 0.2rem;
  background-color: #2b719760;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.extra {
  height: 10vh;
}

footer {
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4rem;
  width: 100%;
  overflow: hidden;
  line-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-transition: height 350ms ease-in-out;
  transition: height 350ms ease-in-out;
  font-weight: 300;
  color: #f0f0f0;
  position: fixed;
  margin-top: 10vh;
}

footer p {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  text-align: center;
}

.x {
  fill: white;
  padding: 0vh;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 60%;
}

.footerSmall {
  height: 0vh;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.wrapper {
  padding: 0 1.5vw;
}

.banner {
  height: 60vh;
  background: url("/assets/shivamBanner.jpg") no-repeat center center scroll;
  background-size: contain;
  background-position-y: center;
  background-size: 100%;
  max-height: 56.25vw;
  margin-top: -5.5vh;
  margin-bottom: 5.5vh;
}

@-webkit-keyframes navShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8vh);
            transform: translateY(-8vh);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
  }
}

@keyframes navShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8vh);
            transform: translateY(-8vh);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
  }
}

#theform {
  width: 40rem;
  max-width: 90vw;
}

#theform label {
  font-size: 1.25rem;
  font-weight: bold;
}

h1 a {
  text-decoration: none;
  color: white;
}

.formal {
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 3rem;
}

.formal p,
.formal ol,
.formal ul {
  margin: 0 auto;
  width: 80vw;
  font-weight: 400;
  text-align: justify;
  font-size: 1.55rem;
  line-height: 2.5rem;
}

.formal ol,
.formal ul {
  text-indent: 1rem;
}

.formal h1 {
  font-weight: 800;
  text-align: center;
  padding-bottom: 0.4rem;
  font-size: 2.6rem;
}

.formal div {
  text-align: center;
}

.formal p {
  text-align: center;
}

.formal p a {
  text-decoration: none;
  color: #5f97eb;
  font-weight: 600;
}

.modal .modal-header,
.modal .modal-title,
.modal .modal-body,
.modal .modal-footer {
  color: black;
}

.niceButton {
  padding: 1vh;
  font-size: 2.5vh;
  background-color: #0e8ef7;
}

.niceButton:hover {
  background-color: #117bd1;
}

p.formaltitle {
  font-weight: 700;
  font-size: 3.8vh;
}

.downloads a img {
  border-radius: 20px;
  height: calc(200px + 20vh);
  margin: 5px;
}

.im {
  margin: 0 auto;
  width: 30%;
}

.im a {
  width: 100%;
}

.notesbutton {
  background-color: #00dddd;
  cursor: pointer;
  border-radius: 1.5vh;
  font-size: 3vh;
  font-weight: 500;
  --notesize: 18vh;
  padding: 0.4vh;
  margin: 1.5vh;
  height: var(--notesize);
  width: var(--notesize);
  border: none;
}

ol *,
ul * {
  font-size: 0.8em;
  line-height: 1.35em;
}

input {
  height: 2rem;
  min-width: 2rem;
  font-size: 1.5rem;
  background-color: #00000000;
  color: white;
}

.outline-white {
  text-shadow: 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
}

.outline-black::before {
  content: "Climate";
  position: absolute;
  color: #ff5100;
  z-index: -1;
  -webkit-transform: scale(1.05) rotate(10deg);
          transform: scale(1.05) rotate(10deg);
}

.outline-black::after {
  content: "Climatghtfhgfte";
  position: absolute;
  color: #ff5100;
  z-index: -1;
  -webkit-transform: scale(1.05) rotate(-10deg);
          transform: scale(1.05) rotate(-10deg);
}

.upsidedown {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: 0px;
  position: absolute;
  width: 100vw;
}
/*# sourceMappingURL=style.css.map */