@charset "utf-8";
body {
    margin: 0;
    width: auto;
	
}
.main {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
.footer {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.field {
justify-content: center;
display: flex;
}
.parking{
	position: absolute;
	bottom: 0;
}
.card{
	position: relative;
}
.slideshow-container {
  width: 1000px;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 15s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  53% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}