html {
  min-width: fit-content;
}

body {
  background-color: #440000;
  background-image: url(https://pbs.twimg.com/media/EsGJGkLW8AIPHuR.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-family:Arial, Helvetica, sans-serif;
  height: 93vh;
  overflow-x: visible
}

.container {
  /*width: 88vw;*/
  /*height: 95vh;*/
  max-width:100%;
  min-height:100%;
  margin:auto;
  display: flex;
  justify-content:center; 
  align-items:center; 
  flex-direction: row; 
  flex-wrap: nowrap;
  gap:22px;
  word-break: break-word;
  border: dotted 7px white;
  padding: 10px;
  /*background-color: lightgrey;*/
}

.window-title {
  padding: 8px 10px;
  margin: -10px -10px 10px -10px;
  background: white;
  color: black;
  font-weight: bold;
  text-align-last: center;
}

.window-content {
  display:block;
  text-align:center;
}

.info {
  display:flexbox;
  height: 88%;
  min-width: 300px;
  max-width: 300px;
  min-height: 600%;
  word-break: break-word;
  justify-content:center;
  align-items:center;
  flex-direction:row;
  flex-wrap: nowrap;
  padding: 10px;
  gap: 5px;
  border: solid #ffffff 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000000;
  background-color: #272727
}

.gameplay {
  display:flexbox;
  height: 88%;
  min-width: 200px;
  max-width: 200px;
  min-height: 600%;
  word-break: break-word;
  justify-content:center;
  align-items:center;
  flex-direction:row;
  flex-wrap: nowrap;
  padding: 10px;
  gap: 5px;
  border: solid #ffffff 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000000;
  background-color: #272727
}

.extras {
  display:flexbox;
  height: 88%;
  min-width: 200px;
  max-width: 200px;
  max-height: 500px;
  overflow-y:scroll;
  word-break: break-word;
  justify-content:center;
  align-items:center;
  flex-direction:row;
  flex-wrap: nowrap;
  padding: 10px;
  gap: 5px;
  border: solid #ffffff 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000000;
  background-color: #272727
}

.move {
  display:flexbox;
  height: 88%;
  min-width: 250px;
  max-width: 250px;
  max-height: 300px;
  overflow-y:scroll;
  min-height: 600%;
  word-break: break-word;
  justify-content:center;
  align-items:center;
  flex-direction:row;
  flex-wrap: nowrap;
  padding: 10px;
  gap: 5px;
  border: solid #b191ff 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000000;
  background-color: #272727;
  margin-bottom: 50px;
}

.move-picture {
  border: solid 2px;
}

.render {
  filter: drop-shadow(0 0 5px black);
  border: solid white;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slides {
  display: none;
}
#slide1 {display:block}

.prev, .next {
  cursor: pointer;
  position:relative;
  top: 50%;
  width:auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 0;
  position:relative;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.active, .dot:hover {
  background-color: #717171;
}

table, th, td {
  border-block-end-width: 2px;
  border-block-end-color: rgba(255, 255, 255, 0.2);
  border-block-end-style: solid;
  border-collapse: collapse;
  padding: 2px;
}

.header {
  background-color: #0c0c0c;
  padding: 5px;
}

.tablerow {
  text-align-last: center;
}

.description {
  text-align: center;
}

@media screen and (max-width: 100px) {
  .container {
    display:block;
    
  }
  .gameplay {
    margin: auto;
  }
  .info {
    margin: auto;
  }
  .move {
    margin: auto;
  }
  .left {
    min-width: 71vw;
    margin: auto;
  }
  .right {
    min-width: 70vw;
    margin: auto;
  }
  .extras {
    margin:auto;
  }
}