* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
}

body {

  padding: 20px;
  font-family: Merriweather,'Noto Serif KR', serif;
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
  background-color: AliceBlue;
}

.intro{
  position: fixed;
  font-size: 15px;
  width: 250px;
  height: 600px;
  bottom: 40px;
  right: 70px;
  overflow: auto;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
  color: transparent;
  text-shadow:2px 2px 12px #000000;
  transform: rotate(-8deg);
}

.intro p{
  margin-bottom: 20px;
  margin-top: 20px;
}

.intro :hover {
  color: #000000;
  text-shadow:0px 0px 1px #000000;
}

.intro img {
  width: 180px;
  height: 50px;
  margin: 0 auto;
}

.list h1 {
  color: AliceBlue;
  font-size: 25px;
  width: 500px;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black;
  margin-bottom: 70px;
}

.list h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  margin-left: 20px;
}

.list {
  max-width: 600px;
  max-height: 900px;
  margin-left: 300px;
  padding: 32px;
  overflow: auto;
}

.goods{
  z-index: 1;
  position: fixed;
  font-size: 15px;
  width: 250px;
  height: 900px;
  top: 20px;
  left: 40px;
  overflow: auto;
  margin: 0 auto;
  padding: 40px;
}

.goods h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.goods p {
  border-style: dotted;
  font-weight: bold;
  color: aliceblue;
  background-color: black;
  animation: blinker 3.5s linear infinite;

}

@keyframes blinker {
  50% {
   opacity: 0;
 }
}

.nav {
  z-index: 3;
  position: fixed;
  width: 400px;
  right: 40px;
  padding: 10px;
}

.nav a {
  text-decoration: none;
  color: gray;
  font-weight: bold;
  transition: color ;
  text-align: center;
  margin: 2px;
  font-size: 15px;
}

.nav a:hover {
  color: black;
}

.new {
  position: fixed;
  font-size: 20px;
  text-align: center;
  width: 700px;
  margin: 0 auto;
  margin-left: 300px;
  bottom: 10px;
  color: gray;
}

.new a {
  text-decoration: none;
  color: aliceblue;
  background-color: black;
  font-weight: bold;
}

