body {
  background-color: black;
  cursor: url("temp.png"), auto !important;
  /* obtained curser thingy here: https://stackoverflow.com/questions/74828476/how-to-change-the-mouse-cursor-into-a-custom-icon-or-image */
}
.gallery-header {
  position: relative;
  text-align: center;
  margin: 49px 0;
}
.Gallery-Header-Text {
  color: rgba(255,255,255,0.76);
  font-size: 57px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  right: 0px;
  top: 7px;
  margin: 20px auto;
  padding: 10px 0;
  z-index: 2;
  position: fixed;
}
.Gallery-Header-Text2 {
  left: 13px;
  bottom: 769px;
  color: rgba(255,255,255,0.76);
  font-size: 57px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  margin: 20px auto;
  padding: 10px 0;
  z-index: 3;
  position: fixed;
}
.gallery-content {
  
}
/* Contains Entrys for the gallery, and exit button. */
.Gallery-Folders-Container {
  display: inline-block;
  background-color: rgba(65,65,65,0.87);
  width: 245px;
  height: 556px;
  left: 10px;
  padding: 10px;
  z-index: 1;
  border: 2px solid grey;
  overflow: hidden;
  text-align: center;
}

.Gfolders-Header {
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;

  padding: 10px;
  text-decoration: underline overline;
  text-decoration-color: white;
  text-decoration-thickness: 6px;
}
.exit-gallery {
  background-color: black;
  color: red;
  border: 1px solid red;
  width: 126px;
  height: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  margin-top: 430px;
  margin-left: auto;
  margin-right: auto;
}
.exit-gallery:hover {
  background-color: red;
  color: black;
  border-color: black;
  transform: scale(1.1);
}