* {
cursor: url(/images/index/cursor.png),auto;
}
body {
margin-top:3rem;
      display: block;
            width: 60vw;
             height: auto;
            position: relative;
            margin-left: auto;
            margin-right: auto;
 }

 .wiimenu {
      border-radius:30px;
      border-style:solid;
      border-color:#787879;
      border-width:0.25rem;
      background-image: url("/images/index/wiimenu.png");
      background-size:cover;
      background-position:center bottom;
      z-index:2;
      margin:0px;
      background-repeat:no-repeat;
      width:60vw;
      height:65vh;
      align-items:center;
      justify-content:center;
    }
    
    .wii-container {
  display: grid;
  grid: 'auto auto auto auto';
  grid-gap: 0.4rem;
  padding: 0.5rem;
}
    
    .wii-container > div {
  background-image:url("/images/index/brokenchannel.png");
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  z-index:3;
  height:12vh;
  width:13vw;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border-style:solid;
  border-color: #787879;
  border-width:0.2rem;
  overflow:hidden;
    }

    .wii-container img {
        object-fit:cover;
        width: 100%;
  height: 100%;
    }
    
    .wii-container > div:hover {
       
     
     border-color:#48C2F9;
     border-width:0.2rem;
    }
@keyframes scanlines {
    0% {
        background-position: 0 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 15%) 50%);
    background-size: 100% 4px, 2px 100%; 
    animation: scanlines 30s linear infinite;
}

@media only screen and (max-width: 900px) {

.wii-container {
  grid: 'auto auto';
  margin-right:auto;
  margin-left:auto;
  max-width:100%;
  
}

.wii-container > div {
  height:10vh;
  width:40vw;
}
      
.item7, .item8, .item9, .item10, .item11, .item12 {
  display:none;
     }
      
.wiimenu {
  width:90vw;
  height:55vh;
  margin-right:auto;
  margin-left:auto;
     }
      
body {
  width: 100%;
  margin: 0px;
  margin-top:3rem;
            }
          }