body {
    background-image: url(images/background.jpg);
}

h1 {
    background-color: rgb(254, 254, 254);
    text-align: center;
    font-size: 40px;
    margin-top: 65px;
}

h2 {
    background-color: rgb(254, 254, 254);
    margin: 10px;
    padding: 20px;
}


h5 {
    text-align: center;
    background-color: rgb(254, 254, 254)
}

.head {
    background-color:rgb(254, 254, 254);
    width: 100%;
    padding: 20px;
    margin: 10px;
}

.row {
    display:flex;
    flex-wrap: wrap;
}

.col {
    width: 30%;
    width: calc(30% - 40px);
    background-color: rgb(254, 254, 254);
    margin: 10px;
    padding: 20px;
}

.col img {
    width: 300px;
    max-width: 100%;
    display: block;
    margin: auto;
    margin-top: 20px;
}


nav{
    background-color: rgba(255, 255, 255, 0.938);
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

nav a{
    background-color: rgba(0, 0, 0, 0.603);
    margin: 5px;
    padding: 8px;
    border-radius: 3.14px;
    color: rgb(255, 255, 255);
    text-decoration: solid;
}
nav a:hover{
    background-image: radial-gradient(circle, #5c0067 0%, #000000 100%);
    translate: 0 -3px;
}

.events{
    background-color: rgb(255,255,255);
    margin: 10px;
    padding: 20px;
}

.slideshow-container {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  background-color: rgb(255,255,255);
  padding-top: 30px;
  padding-bottom: 25px;
  margin-bottom: 40px;
  box-shadow: none;
  margin: 10px;
  padding: 20px;
}

.slideshow-container p{
    padding-left: 50px;
    padding-right: 50px;
}


/* Hide the images by default */
.mySlides {
  display:initial;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  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;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(87, 87, 87, 0.8);
}

/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  padding: 30px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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: #615454;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
