body {
  background-color: black;
}
.OUT {
position: fixed;
left: 50%;
right: 50%;
}

.container {
    position: relative;
    z-index: 2;
    
}
.image2 {
    position: absolute;
    left: 50%;
    right: 50%;
    z-index: 3;
}
.container2 {
  position: relative;
  z-index: 2;
    
}
.image3 {
    position: absolute;
    top: 30%;
    left: 34%;
    right: 34%;
    z-index: 3;
}
.font-big {
  font-size: 120%;
}

.font-small {
  font-size: 80%;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.align-justify {
  text-align: justify;
}

.level-1 {
  text-shadow: 2px 2px red;
}

.level-2 {
  text-shadow: -2px -2px red;
}

.level-3 {
  text-shadow: 5px 5px red;
}

.level-4 {
  text-shadow: 2px 2px 2px red;
  
}

.level-5 {
  text-shadow: 2px 2px red, -2px -2px blue;
}

.textborder {
  border-style: solid;
  border-width: 1px;
  padding: 1em;
}

.opacity5 {
  transition: 2s;
  opacity: 5%;
}

.opacity5:hover {
  opacity: 20;
  transition: opacity 10s;
}

.blueglow {
  transition: 2s;
  opacity: 20%;
}

.blueglow:hover {
  text-shadow: 1px 1px 0px black , -1px -1px 0px black;
  color: #00FFFF;
  opacity: 80%;
  transition: opacity .5s;
}

.bluetoredglow {
  text-shadow: 1px 1px 0px black , -1px -1px 0px black;
  color: #00FFFF;
  transition: 2s;
  opacity: 80%;
}

.bluetoredglow:hover {
  color: #ff0066;
  opacity: 100%;
  transition: color 3s, opacity 2s;
  text-shadow: 1px -1px 0px #fcba03, -1px 1px black;
}

.redglow:hover {
  color: #fcba03;
  font-weight: bold;
  font-family: Georgia,Times,Times New Roman,serif;
  text-shadow: 1px 1px 0 black, 0 0 4px #fff019;
  transition: 1s;
  opacity: 100%;
}




