/* CSS Document */
* {
   box-sizing: border-box;
  }

body {background-image: linear-gradient(to right, orange, yellow);}

@media screen and (max-width: 400px) {
  li {
    display: flex;
		background-color:transparent;
  }
}

