body {
  background-image: linear-gradient(#1D2671, #C33764);
  color: #f3fafd;
}

.logo {
  border-radius: 30px;
  box-shadow: 2px 2px 4px black;
  height: 10rem;
}

#descirption {
  white-space: pre-line;
}

a {
  color: orange;
}



.arrow {
  position: absolute;
  font-size: 2rem;
  z-index: 2;
}

#arrow-right:hover {
  color: red;
  transform: translateX(0.4rem);
  transition: transform 0.8s ease-out;
}

#arrow-left:hover {
  color: red;
  transform: translateX(-0.4rem);
  transition: transform 0.8s ease-out;
}

.owl-prev {
  background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png') left center no-repeat;
  height: 0;
  z-index: 1000;
  cursor: pointer;
  transform: scale(5);
  position: absolute;
  left: 20%;
  bottom: 2%;
}

.owl-next {
  background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png') right center no-repeat;
  position: absolute;
  height: 0;
  z-index: 1000;
  right: 46%;
  bottom: 2%;
  cursor: pointer;
  transform: scale(5);
}

@media (max-width: 999px) {
  .owl-carousel {
    left: 50%;
    transform: translateX(-38.5%);
  }
}

@media (min-width: 1000px) {
  .owl-carousel {
    left: 50%;
    transform: translateX(-46.5%);
  }

  .owl-next {
    right: 40%
  }

  .owl-prev {
    left: 31%
  }
}

@media (min-width: 1501px) {
  .owl-carousel {
    left: 50%;
    transform: translateX(-46.5%);
  }

  .owl-next {
    right: -1%;
    top: 38%;
  }

  .owl-prev {
    left: -8%;
    top: 38%;
  }
}

.owl-prev:hover,
.owl-next:hover {
  opacity: 0.5;
}

img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

#android-sticker {
  width: 20%;
}

@media (max-width: 750px){
  #android-sticker {
    width: 50%;
  }
}