body {
    display: flex;
    justify-content: end;
    padding: 25px;
}
ul {
  font-family: Verdana;
  font-size: 30px;
  font-weight: bold;
  list-style: none;
  text-align: left;
  line-height: 1.5;
}

ul a:link {
    color: black;
    text-decoration: none;
}
ul a:visited {
    color: black;
}
ul a:hover {
    color: black;
}
ul a:active {
    color: black;
}

.box1 {
  height: 625px;
  min-width: 250px;
  max-width: 250px;
  text-align: center;
}
.box2 {
  height: 625px;
  width: 1225px;
  overflow-y: hidden;
}

.carousel1 {
  margin: 100px auto;
  width: 100%;
  height: 60%;
  display: flex;
  overflow-x: auto;
  padding-top: 0px;
  translate: 0px -350px;
}
.carousel2 {
  margin: 100px auto;
  width: 100%;
  height: 60%;
  display: flex;
  overflow-x: auto;
  padding-top: 0px;
  translate: 0px -450px;
}
.carousel3 {
  margin: 50px auto;
  width: 100%;
  height: 60%;
  display: flex;
  overflow-x: auto;
  translate: 0px -550px;
}

.carousel1::-webkit-scrollbar {
  display: none;
}
.carousel2::-webkit-scrollbar {
  display: none;
}
.carousel3::-webkit-scrollbar {
  display: none;
}

.group1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  animation: spin 20s infinite linear;
  padding-right: 1em;
}
.group2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  animation: spin2 20s infinite linear;
  padding-right: 1em;
}

.card {
  height: 5em;
  width: 4em;
  padding: 1em;
  background: lightgray;
  font-size: 3rem;
  border-radius: 0.2;
  text-align: center;
  align-content: center;
}

@keyframes spin {
  from {translate: 0;}
  to {translate: -100%}
}
@keyframes spin2 {
  from {translate: -100%;}
  to {translate: 0}
}
