* {
  box-sizing: border-box;
}

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;
  transition: left 0.15s;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 1em;
  background-color: rgb(232, 229, 225);
  padding: 2rem;
  margin-right: 100px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: scroll;
}

.boxTitle {
  font-size : clamp(2rem, 10vw, 5rem);
}

.boxText {
  font-size : clamp(1rem, 5vw, 2.5rem);
}

.buttonHolder {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.boxButton {
  margin-top: 2vh;
  margin-bottom: 2vh;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  appearance: none;
  outline: none;
  border: black 1px solid;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  background-image: linear-gradient(90deg, #fcecfe, #fbf6e7, #e6fcf5);
  border-radius: 11px;
  padding: 12px 20px;
  position: relative;
  line-height: 24px;
  color: black;
  box-shadow: 0 1px 2px rgba(0, 0, 0, ), 0 4px 16px rgba(0, 0, 0, ), 0 4px 24px rgba(0, 0, 0, );

}

.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;
}