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

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

.left-slid {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transfrom 0.8s ease-in-out;
}

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

.left-slid h1 {
  font-size: 2.5rem;
}

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

.right-slid > div {
  background-size: cover;
  /* background-size:contain; */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #223941;
}

.buttons-container button {
  position: absolute;
  left: 35%;
  top: 50%;
}

button {
  border: none;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
}

#down-btn {
  transform: translateX(-100%);
}

#up-btn {
  transform: translateY(-100%);
}

.game-one {
  background-color: #1d1815;
}
.game-two {
  background-color: #405260;
}
.game-three {
  background-color: #73a91d;
}
.game-four {
  background-color: #223941;
}

.img {
  width: 100%;
  height: 100%;
}

.img-one {/* 
  background: url(https://images3.alphacoders.com/601/thumb-1920-601862.jpg); */
  background: url(https://i.blogs.es/34ca59/911rwdzfynl/1366_2000.jpg);
}
.img-two {/* 
  background: url(https://images6.alphacoders.com/709/thumb-1920-709832.jpg); */
  background: url(https://i.blogs.es/6572fc/81opykuzkjl/1366_2000.jpeg);
}
.img-three {/* 
  background: url(https://images3.alphacoders.com/608/thumb-1920-608887.jpg); */
  background: url(https://i.blogs.es/b4e7b4/91nx5yat79l/1366_2000.jpg);
}
.img-four {
  /* background: url(https://images7.alphacoders.com/714/thumb-1920-714040.jpg); */
  background: url(https://i.blogs.es/58b70e/71eacp6g2fl/1366_2000.jpg);
}





.navbar-wrapper {
  /* font-size: 62.5%; */
  /* width: 100%;*/
  /* height: 10vh;  */
  height: 100vh; 
  /* background: #eccc68; */
  display: flex;
  justify-content: center;
  align-items: center;
}



.navbar { 
  width: 20rem;
  height: 20rem;
  background-color: #fd7272;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: scale(0) rotate(-180deg);
  transition: transfrom 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0) 0.23;
}

.change .navbar {
  transform: scale(1) rotate(0);
  transition: all 1s;
}

.navbar-link {
  position: absolute;
}

.navbar-link i {
  font-size: 2.5rem;
  color: #fff;
  transition: color 0.3s;
}

.navbar-link:hover i {
  color: #222;
}

.navbar-link:nth-child(1) {
  top: 2rem;
}

.navbar-link:nth-child(2) {
  top: 6rem;
  right: 2rem;
}

.navbar-link:nth-child(3) {
  bottom: 6rem;
  right: 2rem;
}

.navbar-link:nth-child(4) {
  bottom: 2rem;
}

.navbar-link:nth-child(5) {
  bottom: 6rem;
  left: 2rem;
}

.navbar-link:nth-child(6) {
  top: 6rem;
  left: 2rem;
}

.navbar-btn {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: #4a69bd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.navbar-btn i { 
  font-size: 2rem;
  color: #fff;
  transition: transform 0.5s;
}

.change .navbar-btn i {
  transform: rotate(45deg);
}
