body{
  font-family:'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  background-color:#000000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
  border-color:#000000;
}
ul li {
  float: left;
}

ul li a {
  display: block;
  color: #a9b0b7;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #1b1b1b;
  color: #a9b0b7;
}
/*welcome*/
.title{
  color: #a9b0b7;
  text-align: center;
  font-size: 5em;
}

/*Home page paragraph*/
.paragraph_background{
  background: linear-gradient(0deg,#32050c, #c3122f 50%, #32050c 100%);
  margin: 2px;
  width: 90%;
  height: 15%;
  padding: 10px;
  opacity: 1;
  text-align: center;
  margin:5% auto;
  border-radius: 10px;
}
.heading_beans{
  color: #000000;
  font-size: 4vw;
  width: 98%;
  background: linear-gradient(0deg,#63676b, #a9b0b7 50%, #63676b 100%);
  border-radius: 10px;
  margin:10px auto;
}
.heading1{
  color: #000000;
  font-size: 4vw;
  width: 67%;
  float:left;
  text-align: center;
  background: linear-gradient(0deg,#63676b, #a9b0b7 50%, #63676b 100%);
  border-radius: 10px;
  margin:0 0;
}
.text1{
  color: #000000;
  font-size: 2vw;
  width: 67%;
  height: 10%;
  float:left;
  background: linear-gradient(0deg,#63676b, #a9b0b7 50%, #63676b 100%);
  border-radius: 10px;
}
.heading2{
  color: #000000;
  font-size: 4vw;
  width: 67%;
  float:right;
  text-align: center;
  background: linear-gradient(0deg,#63676b, #a9b0b7 50%, #63676b 100%);
  border-radius: 10px;
  margin:0 0;
}
.text2{
  color: #000000;
  font-size: 2vw;
  width: 67%;
  float:right;
  background: linear-gradient(0deg,#63676b, #a9b0b7 50%, #63676b 100%);
  border-radius: 10px;
}
/*Classes page*/
.class_heading{
  color: #c3122f;
  font-size: 4vw;
  text-align: center;
  margin: auto;
  display: block;
}
.class_text{
  color: #179ff1;
  font-size: 2vw;
  text-align: center;
  margin: auto;
  display: block;
}
.Error_Message{
  margin: auto;
  display: block;
  text-align: center;
  width:40%;
}
/*Neon Text Effect from https://codepen.io/nefejames/pen/ByBBOaO */
.neon-text {
    font-size: 5rem;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #c3122f, 0 0 10px #c3122f, 0 0 20px #c3122f, 0 0 40px #c3122f, 0 0 80px #c3122f;
    }
    100% {
        text-shadow: 0 0 10px #a9b0b7, 0 0 20px #a9b0b7, 0 0 40px #a9b0b7, 0 0 80px #a9b0b7, 0 0 160px #a9b0b7;
    }
}


/*W3 schools carrosel https://www.w3schools.com/howto/howto_js_slideshow.asp*/
* {box-sizing: border-box}
  .mySlides {display: none}
  img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  text-align: center;
  width:50%;
  height:50%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  bottom:40%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  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(0,0,0,0.8);
}

/* Caption text */
.text3{
  color: #000000;
  font-size: 2vw;
  width: 67%;
  border-radius: 10px;
  text-align: center;
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}