body {
  background-color: black;
  color: white;
  font-family: Caladea;
  text-align: center;
  font-size: 20px;
  overflow-y: scroll;
  background-image: url('https://gugemar.neocities.org/night-star-starry-sky-backgrounds-textures-6c31ef-1024a.jpg');
}

h1 {
  color: white;
  text-align: center;
  font-size: 2em;
}
h2 {
  color: white;
  text-align: center;
  font-size: 1.5em;
}
h3 {
  color: transparent;
  user-select: none;
}
ul {
  color: white;
  text-align: center;
  background-color: black;
}

.double {border-style: double;}
.solid {border-style: solid;}
.hidden {border-style: hidden;}

a {
  color: lightblue;
}
a:hover {
  color: black;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  user-select: none;
}

.border {
  border: .15em solid white;
}

/*NAVBAR*/
/* The navbar container */
.topnav {
  max-width: 1080px;
  max-height: 3.2em;
  overflow: hidden;
  margin: auto;
  border-radius: 0;
}

/* Navbar */
.topnav a {
  color: white;
  background-color: black;
  float: left;
  display: block;
  text-align: center;
  width: 8em;
  text-decoration: none;
  margin: .3em;
  border: .15em solid white;
  border-radius: 0;
  padding: .5em 0;
}

/* Change color on hover */
.topnav a:hover {
  background-color: white;
  color: black;
  border: .15em solid black;
}

* {box-sizing:border-box}


/* organizing in main column and two sidebars */
#flex {
  display: flex;
  max-width: 1080px;
  margin: auto;
}

aside {
  width: 280px;
  background: black;
  padding: .6em;
  margin: .3em .3em;
  border-radius: 0;
}

#sidebar-right {
  order: 3;
}

#sidebar-left {
  order: 1;
}

main {
  width: 800px;
  background: black;
  border-radius: 0;
  margin: .3em .3em;
  padding: 1em;
  order: 2;
}
main  {
  display: block;
  unicode-bidi: isolate;
}

mainwhole {
  width: 1080px;
  background: black;
  border-radius: 0;
  margin: .3em .3em;
  padding: 1em;
}
mainwhole {
  display: block;
  unicode-bidi: isolate;
}

/*COLUMNS*/
/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33%;
  padding: 0;
}
/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/*HOVER TEXT*/
.overlay {
position: absolute;
bottom: 0;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
transition: .5s ease;
opacity:0;
color: white;
padding: 0;
text-align: center;
}

.overlay span {
  padding: 0;
  border-radius: 0;
  position:relative;
  top:50%;
}

.container {
  position: relative;
  text-align: center;
  color: white;
  padding: .3em;
  margin: .3em .3em;
}

.container:hover .overlay {
  opacity: 1;
}


/*SLIDESHOW*/
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Hide the images by default */
.mySlides {
  display: none;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(255,255,255,1.0);
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: .5s;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*FOREGROUND IMAGE*/
#cont {
  border: 0 solid #aaa;
  /*To show the boundaries of the element*/
}
#cont:before {
  position: absolute;
  top: 0;
  left: 0;
  content: url('https://gugemar.neocities.org/fg.png');
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
}

/*FOOTER*/
.footer {
  background-color: rgba(0,0,0,0.75);
  text-align: center;
  max-width: 1080px;
  margin: auto;
}
