@charset"UTF-8";
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
   background: linear-gradient(to bottom, #dda0dd, #7b68ee) 
}

body {
  font-family: Zen Maru Gothic;
  color: black; 
}

.intro {
  line-height:1.5;
}

.container{
  width: 700px;
  margin: 50px auto;
  border: 5px solid #eee;
}
.container ul{
  display: flex;
}

.container li{
  text-align: center;
  padding: 15px;
  color: #333;
  width: 100px;
  list-style: none;
}



h1 {
  font-size: 60px;
  text-align: center;
  color: #4b0082;
}