body {
  background: #eeedec;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.container {
  max-width: 600px;
  min-height: 600px;
  margin: 5px auto;
  background-color: bisque;
}

h2 {
  text-align: center;
}

button {
  border: none;
  text-align: center;
  border-radius: 8px;
  padding: 5px;
  margin: 0 10px;
  color: white;
  background-color: green;
}

form {
  max-width: 450px;
  padding: 10px;
  margin:0 auto;
}

p {
  padding: 10px;
}

#oldFiles {
  width: 90%;
  padding: 10px;
  margin:0 auto;
}

.delButton {
  background-color: red;
}

img {
  /* padding: 3px; */
  margin: 5px;
  border: 1px solid #8B0000;
  float: left;
}

ul {
  list-style: none;
}

form li {
  background-color: lightgray;
  padding: 10px;
  min-height: 170px;
}

.imgForm {
  width: 90%;
  padding: 10px;
  background-color: lightgoldenrodyellow;
  position: relative; 
}

.imgForm img {
  width: 150px;
  height: 150px;
}

.editButtons {
  margin-right: 0px;
}

.savebutton {
  position:absolute;
  top: 10px;
  right: 5px;
  width: 5em;
}

.delbutton {
  position:absolute;
  top: 40px;
  right: 5px;
  width: 5em;
}

span {
  margin: 4px;
}

#files {
  border-radius: 8px;
}

#infoText, #helpText {
  text-align: justify;
}

#loginform,
#newuserform,
#uploadform,
#oldFiles {
  display:none;
}

input {
  border-radius: 8px;
  padding: 5px;
  display: inline-block;
  margin-bottom: 5px;
}

input[type='radio'] {
  padding: 10px;
  display: inline-block;
}

.custom-file-input::before {
  content: '+';
  display: inline-block;
  background: linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

.message {
  background-color: red;
  color: white;
  margin: 5px auto;
  
  text-align: center;

}

/* style NAV */
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(88, 134, 162);
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #111;}

ul.topnav li a.active {background-color: #04AA6D;}

ul.topnav li.right {float: right;}

li.noShow {
  display: none;
}

div.noShow {
  display: none;
}

div.pictureBox {
  width: 470px;
  min-height: 470px;
  margin: 20px auto;
}

div.pictureBox img {
  width: 220px;
  height: 220px;
}

.slideshow-container {
  max-width: 460px;
  position: relative;
  margin: 20px auto;
}

.mySlides img {
  max-width: 450px;
  height: 450px;
  margin: 5px auto;
}

.mySlides {
  margin: auto;
}
/* Caption text */
.slide-title, .slide-subtitle {
  /* color: #ffffff; */
  font-size: 1.8em;
  padding: 8px;
  /* position: absolute;
  top: 8px; */
  width: 100%;
  text-align: center;
}

.slide-subtitle {
  font-size: 1.2em;
}
  
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@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}
}