#p5container {
  position: relative;
  align-self: center;

  width: 1280px;
  height: 720px;

  /*
  border-style: solid;
  border-color: rgb(0, 175, 0);
  overflow: hidden;

  background-color: rgb(0, 63, 0);
  */
  border-radius: 5px;

  

  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.884);
}

/*
#p5container canvas:fullscreen {
  width: 100vw;
  height: 100vh;
} */

#fullscreenButton {
  color: white;
  background-color: rgb(48, 80, 0);
  margin-top: -20px;
  margin-bottom: 20px;
  cursor: pointer;
}

body {
  background-color: rgb(9, 26, 0);
  height: 95vh;

  display: flex;
  align-items: center;

  flex-direction: column;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

h1 {
  color: white;
}

footer {
  bottom: 0;
}

footer p {
  color: rgb(184, 184, 184);
}

.customLoader {
  text-align: center;
  position: relative;
  color: white;
  font-size: 42px;
  top: 50%;
}


#badScreen {
  color: white;
  display: none;

  flex-direction: column;
  align-items: center;
}
#badScreen p {
  color: white;
}
#badScreen img {
  width: 50vw;
}

@media only screen and (max-width : 1270px) {
  #p5container {
    display: none;
  }
  #badScreen {
    display: flex;
  }
}
@media only screen and (max-height : 710px) {
  #p5container {
    display: none;
  }
  #badScreen {
    display: flex;
  }
}
