@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

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

body {
  font-family: 'Roboto Condensed', sans-serif;
  height: 100vh;
}

/* .header {
  height: 10%;
  text-align: center;
  vertical-align: middle;
} */

.container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
}

.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  transition: transform 1s ease-in-out;
}

.sidebar > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
}

.sidebar h2 {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: -30px;
  text-shadow: 1px 1px 1px #000;
}

.sidebar p {
  font-size: 18px;
  text-align: center;
  /* text-shadow: 1px 1px 1px #000; */
}

.slides {
  position: absolute;
  top: 0;
  left: 35%;
  height: 100%;
  width: 65%;
  transition: transform 1s ease-in-out;
}

.slides > div {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

button {
  padding: 15px;
  font-size: 25px;
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
}

button:hover {
  color: #222;
}

button:focus {
  outline: none;
}

.container .control button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.container .control .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.container .control .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* .footer {
 height: 5%;
} */