body {
  background-color: rgb(209, 255, 180);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  height: 100vh;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;

}

h1 {
  margin: 1em;
}

#cardContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.boxHolder {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.slideCard {
  position: absolute;
  left: 0;
  transition: left 0.15s;
  width: 90%;
  height: 100%;
  opacity: 1;
  border-radius: 1em;
  top: -20;
}

#move1 {
  background-color: red;
}

#move2 {
  background-color: rgb(55, 0, 255);
}

#move3 {
  background-color: rgb(17, 217, 31);
}

.slideshowImage {
  width: 100px;
  height: 100px;
}

.rightarrow {
  position: absolute;
  top: 200px;
  left: 200px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid rgb(146, 146, 146);
}

.leftarrow {
  position: absolute;
  top: 200px;
  left: 10px;

  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid rgb(146, 146, 146);
}

/* twitter badge */

.twitter {
  position: fixed;
  display: block;
  right: 12px;
  top: 12px;
}

.twitter svg {
  width: 32px;
  height: 32px;
  fill: rgb(66, 239, 255);
  border: none;
}