body{
  font-family: 'Nanum Gothic', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
}
a{
  text-decoration: none;
}
header{
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.white{
  position: relative;
}
.white::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  box-sizing: border-box;
}

header a div img{
  margin: 0 auto;
  width: 85%;
  height: 150px;
  box-sizing: border-box;
  display: block;
}
header a div h1{
  position: absolute;
  text-align: center;
  width: 60%;
  padding: 5px;
  color: rgba(255, 71, 71, 1);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.imageDark{
  position: relative;
}
.imageDark::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  box-sizing: border-box;
}

div.watch img{
  width: 100%;
  display: block;
  margin-bottom: 20px;
  animation: watch 1s infinite;
}
@keyframes watch {
  0%{transform: scale(0.95);}
  50%{transform: scale(1);}
  100%{transform: scale(0.95);}
}

div.banner{
  width: 100%;
  height: 166px;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
}

#leggings{
  background-image: url('http://darkadimg.cafe24.com/kangstar/leggingsBanner.jpg');
}
#shirt{
  background-image: url('http://darkadimg.cafe24.com/kangstar/shirtBanner.jpg');
}

div.banner h4{
  font-size: 16px;
}
div.banner p{
  font-size: 13px;
}
div.banner h4, div.banner p{
  margin: 0;
  padding: 20px 30px 0;
  position: sticky;
  color: #fff;
}
.banner i{
  color: white;
  position: absolute;
  width: 93%;
  bottom: 30px;
  text-align: right;
  animation: bannerTextColor 1s infinite linear;
}
@keyframes bannerTextColor {
  0%{color: rgb(89, 165, 255);}
  33.33%{color: rgb(255, 96, 96);}
  66.66%{color: white;}
  100%{color: rgb(89, 165, 255);}
}


div.banner{
  margin-bottom: 20px;
}

nav ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 85%;
}
nav ul a{
  color: rgb(255, 96, 96);
  animation: navColor 0.4s infinite linear;
}
@keyframes navColor {
  0%{color: rgb(255, 96, 96);}
  50%{color: rgb(255, 255, 255);}
  100%{color: rgb(255, 96, 96);}
}
nav ul li{
  text-align: center;
  font-size: 12px;
  background-color: rgb(40, 40, 40);
  box-sizing: border-box;
  padding: 5px;
}
#left{
  border-bottom-left-radius: 10px;
}
#right{
  border-bottom-right-radius: 10px;
}
