* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "poppins", serif, sans-serif;
}
main {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: black;
  color: white;
}
.slide-container {
  height: 100vh;
  width: 100%;
  /* background-color: red; */
  position: relative;
  display: flex;
  overflow: hidden;
}

.left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform ease 0.4s;
}
.left-slide > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.right-slide {
  height: 100%;
  width: 65%;
  position: absolute;
  top: 0;
  left: 35%;
  /* background-color: aqua; */
  background-position: center;
  background-size: cover;
  transition: transform ease 0.4s;
}
.right-slide > div {
  height: 100%;
  width: 100%;
}
.right-slide > div img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
button {
  position: absolute;
  top: 50%;
  background-color: #f1f1f1;
  font-size: 20px;
  font-weight: 400;
  padding: 12px;
  border: none;
  cursor: pointer;
  &:hover {
    background-color: #dedede;
  }
}
.slide-action-up-button {
  left: 35%;
  transform: translateY(-100%);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.slide-action-down-button {
  right: 65%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
