/*-------------------- Table Shadow---------------------*/
#table {
  border-collapse: collapse;
  box-shadow: 10px 10px 10px #777;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
  border-radius:10px
  
}
/*-------------------- Table Shadow End ----------------*/
a {
  color: #FFFFFF;
  text-decoration: none;
}
a:hover {
  color: #F8C5D8;
}

body{
	font-family:Century Gothic;
	background-color:#F9C4DA;
}

table {
	border-collapse:collapse;
}

table.left {
	color:#ffffff;
	border-collapse:collapse;
}

table.right{
	color:#000000;
	border-collapse:collapse;
}

p.header{
	font-family: "Sour Gummy", sans-serif;
	font-weight: 500;
	font-size: 25;
	font-style: normal;
}

p.menu{
	font-family: "Grand Hotel", serif;
	font-weight: 500;
	font-size: 25;
	font-style: normal;
}



/*------------------------------------ Form ----------------------------------------*/
input[type=text], select {
  width: 200px;
  color: white;
  background-color: transparent;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 14px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 30%;
  background-color: transparent;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 14px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #C2DEEE;
  color: #000000;
}

div {
  border-radius: 5px;
  background-color: none;
  padding: 20px;
}

/*----------------------- candy transition ---------------------*/
.candy {
  transition: width 2s, height 2s, transform 2s;
}

.candy:hover {
  /*width: 300px;
  height: 300px;*/
  transform: rotate(360deg);
}
/*----------------------- candy transition (page product) ---------------------*/

.candy2 {
  width: 150px;
  height: 150px;
  transition: width 2s, height 2s, transform 2s;
  filter: drop-shadow(5px 5px 5px #222); 
}

.candy2:hover {
  width: 250px;
  height: 250px;
  transform: rotate(180deg);
}

/*----------------------- candy rotate transition (page about us) ---------------------*/

.candy3 {
  width: 100px;
  height: 100px;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  
}

@keyframes example {
  0%   { left:0px; top:0px;}
  25%  { left:450px; top:0px;}
  50% {transform: rotate(180deg);}
  100% { left:0px; top:0px;}
}

/*---------------------- text animation -----------------------*/
.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
  font-size: 60px;
}
.waviy span {
  font-family: "Berkshire Swash", serif;
  position: relative;
  display: inline-block;
  color: #fff;
  animation: waviy 1s infinite;
  animation-delay: calc(.1s * var(--i));
  
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}

/*----------------------------- box model (page about us ---------------------------*/
div.box1 {
  background-color: #923699;
  color:#ffffff;
  width: 400px;
  padding: 20px;
  margin: 20px;
  margin: 0 auto;
}

/*----------------------------- image border (page about us) -----------------------*/
img {
  border-radius: 8px;
}