* { margin: 0; }

.container {
  width: 100vw;
  height: 80vh;
  margin-top: 5vh;
  overflow: hidden;
}

.picFrame {
  width: 95%;
  height: 95%;
  margin: auto;
  border-radius: 25px;
}
.picFrameInner {
  display:inline-block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transform: translate(0%, 0%);
  vertical-align: middle;
  position:relative;
  -webkit-animation-name: picFrame;
  -webkit-animation-duration: 2s;
  animation-name: picFrame;
  animation-duration: 2s;
}
@-webkit-keyframes picFrame {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes picFrame {
  from {opacity: 0;}
  to {opacity: 1;}
}

#next, #prev {
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0px 3px 4px rgba(0,0,0,0.4);
  border: none;
  color: rgba(0,0,0,0.5);
  font-weight: bold;
  font-size: 25px;
  line-height: 0px;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40vh;
  cursor: pointer;
  transition: all 1s;
}
#next {right: 50px;}
#prev {left: 50px;}
#next:hover, #prev:hover {
  background: rgba(255,255,255,0.9);
  width: 50px;
  height: 50px;
  top: 41vh;
}

.dotBox { 
  display: flex;
  width: min-content;
  margin: auto;
  position: relative;
  bottom: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  display: inline-flex;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.dot:nth-child(1) {background: rgba(255,255,255,0.9);}