body {font-family: Arial, Helvetica, sans-serif;}
body{
  font-family: cursive;
  font-size: 5vw;
  color: black;
  background-color: bisque;
}
button {
  background-color:transparent;
  color: black;
  text-align: center;
  display: inline-block;
  font-size: 1rem;
  width:fit-content;
  height:fit-content;
}
button:hover{
  cursor: pointer;
}
button.close {
  background-color: transparent;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: #0f0;
  border-width: 2px;
  border-style: solid;
  margin-top: 20px;
  float: left;
}
.menu:hover, menu:focus{
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
div {
  margin-top:25px;
}
div.half {
  width: 450px;
}
h1{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main {
  font-family: cursive;
  font-size: 5em;
  color: red;
}
img {
  display: flex;
  max-width: 95%;
  border-radius: 5%;
}
lobby {
  display: block;
}
p {
  text-indent: 3vw;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  padding-top: 1dvh;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.responsive{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

body{
  font-family: cursive;
  font-size: 2vw;
  color: black;
  background-color: bisque;
}
h1,h6{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
h1{
  margin-top: 4svh;
}
h6.bottom{
  margin-top: -2svh;
}
img.small{
  width: 360px;
  height:auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
}
p {
  text-indent: 3vw;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  padding-top: 1dvh;
}
.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.responsive{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.half{
  width:450svw;
}

/* MODAL STYLES
-------------------------------*/
.jw-modal {
  /* modals are hidden by default */
  display: none;

  /* modal container fixed across whole screen */
  position: fixed;
  inset: 0;

  /* z-index must be higher than everything else on the page */
  z-index: 10000;
  
  /* semi-transparent black background exposed by padding */
  background-color: rgba(0, 0, 0, .5);
  padding: 20px;

  /* enables scrolling for tall modals */
  overflow: auto;
}

.jw-modal.open {
  display: block;
  margin-top: 2px;
}

.jw-modal-body {
  padding:15px;
  background: #fff;
  margin-top: -2px;
  border-radius: 5%;
}

body.jw-modal-open {
  /* body overflow is hidden to hide main scrollbar when modal window is open */
  overflow: hidden;
}
/* The Modal (background) */

/* Modal Content */

/* The Close Button */
.close {
  color: #000;
  float: right;
  font-size: 150px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*  Slide Show        *?
 * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
  margin-left: auto;
  margin-right: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 60%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color:red;
  font-weight: bold;
  font-size: 50px;
  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 */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  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: #717171;
}

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

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