body {
  font-size: 15px; 
  background-color: black;
  color: #6600b3;
  font-family: helvetica;
  border-style: none;
  border-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  border-color: green;
  align-content: center;
}

h1 {
    font-size: 1em;
    color: #6600b3;
    margin: 30px;
    padding: 10px;
    font-family: serif; 
    text-transform: uppercase;
    text-shadow: 2px 3px 1px #170053;
  text-align: center;
}

small {
  font-size: 10px;
}

a:link{
  color: #800ada;
}

a:visited {
  color: #523965;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    font-size: 60px;
    font-family: fantasy;
    -webkit-text-stroke: 1px #440a6f;
}

.main {
  display: block;
  margin: 170px;
}



.center {
  text-align: center;
  position: static;
  align-content: center;
  justify-content: center;
  align-items: center;
  
}

.navleft {
  height: 100%;
  width: 163px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
  background-image: url(/grafiks/gothPbakgr01.png);
  text-indent: 8px;
}

.marquee {
  bottom: 10px;
}

.navright {
  width: 130px;
  position: fixed;
  z-index: 1;
  bottom: 5px;
  right: 10px;
  overflow-x: hidden;
  padding: 20px 0;
}

#footer {
  bottom: 1%;
  right: 50%;
  border: color #d9aff9 height 3px width 3px style dashed;
  position: fixed;
  /*display: flex;*/
  justify-content: center;
  align-content: center;
  align-self: center;
  text-align: center;
}

/*glowing text*/
.glow {
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #d9aff9, 0 0 20px #d9aff9, 0 0 30px #6600b3, 0 0 40px #6600b3, 0 0 50px #6600b3, 0 0 60px #6600b3, 0 0 70px #6600b3;
  }
  to {
    text-shadow: 0 0 20px #d9aff9, 0 0 30px #b761f7, 0 0 40px #b761f7, 0 0 50px #b761f7, 0 0 60px #b761f7, 0 0 70px #b761f7, 0 0 80px #b761f7;
  }
}

/*TV stuff*/

.tvcontainer {
  position: fixed;
    display: flex;
    justify-content: center; 
    align-items: center;    
    width: 100%; 
    height: 100%;
}

.tvframe {
  position: fixed;
  top: 2.3%;
  right: 1%;
  z-index: 4;
  pointer-events: none;
}

.tvyt iframe {
  position: fixed;
  top: 1%;
  right: 1.3%;
  padding-right: 24px;
  padding-top: 80px;
  transform: rotate(12deg);
  border: none;
  z-index: 3;
}

.motif {
  align-content: center;
  display: flex;
}




/*MODAL*/

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #170e1e; /* Fallback color */
  background-color: #27073e; /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}