body{
  margin: 0;
  padding: 0;
  background: #131516ff;
  color: antiquewhite;
  font-family: monospace;
  font-size: x-large;
  text-align: center;
  font-style: oblique;
  background-image: url(basebackground.jpg.avif);
  background-position: fixed;
}
.center{
  position: absolute;
  font-display: optional;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 450px;
  width: 800px;
  box-shadow: 0px 5px 8px rgba(0,0,0,.3);
  overflow: hidden;
}
.images{
  height: 100%;
  width: 500%;
  display: flex;
}
.images img{
  width: 100%;
  height: 100%;
}
.images .slide{
  width: 20%;
  transition: .6s;
}
.buttons{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.buttons a{
  height: 8px;
  width: 30px;
  border: 2px solid white;
  margin: 0 5px;
  border-radius: 10px;
}
.active{
  transition: .5s;
  transform: scale(0.999);
  background: white;
  animation: animate .4s;
}
@keyframes animate {
  100%{
    transform: scale(0.8);
  }
}
