html {
    scroll-behavior: smooth;
   }
   
   /* body {
    margin: 0;
    background-color: #efebeb;
   } */
   
   /* h1 {
    font-family: Arial;
    color: red;
    text-align: center;
   } */
   
   .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 100%);
    overflow: hidden;
    scroll-behavior: smooth;
   }
   .wrapper section {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, auto);
    margin: 10px 0;
    background-color: antiquewhite;
    padding-bottom: 0%;
    box-shadow: 0 0 10px red;
   }
   .wrapper section .item {
    padding: 5px 1px;
    transition: 250ms all;
   }
   .wrapper section .item:hover {
    margin: 50px 0px;
    transform: scale(1.2);
   }
   .wrapper section a {
    position: absolute;
    color: #fff;
    text-decoration: none;
    font-size: 6em;
    background: rgb(0, 0, 0);
    width: 50px;
    padding: 20px;
    text-align: center;
    z-index: 1;
   }
   .wrapper section a:nth-of-type(1) {
    top: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    /* background: linear-gradient(-90deg, rgba(243, 237, 237, 0.919) 0%, rgb(255, 250, 250) 100%); */
   }
   .wrapper section a:nth-of-type(2) {
    top: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    /* background: linear-gradient(90deg, rgba(12, 11, 11, 0.932) 0%, black 100%); */
   }
   
   @media only screen and (max-width: 600px) {
    a.arrow__btn {
    display: none;
    }
   }
