body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(images/background.jpg)center/cover no-repeat;
}
.image{
  background: yellow;
  flex:0 0 80%;
  min-height: 70vh;
  background: url(images/bcg-0.jpg)center/cover no-repeat;
  border-radius: 15px;
  box-shadow: 5px 10px black;
  position: relative;
}

.btn{
  display: inline-block;
  background: white;
  color: black;
  border: 3px solid skyblue;
  font-size: 1.5rem;
  font-style: initial;
  padding: 0.5rem;
  border-radius: 20%;
  box-shadow: 2px 5px black;
  outline: none;
}

.prevBtn{
  position: absolute;
  top:50%;
  left:0;
  transform: translate(-50%,-50%);
}

.nextBtn{
  position: absolute;
  top:50%;
  right:0;
  transform: translate(50%,-50%);
}

.btn:active{
  background: grey;
  box-shadow: 1px 1px grey;
}

.btn:hover{
  background: green;
  color: white;
}
.text{
  color: rgb(255, 17, 0);
  font-size: 5rem;
  position: absolute;
  left: 200px;
  top: 50px;
}
