html, body{
    margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 260px;
}
.fortunecookie{
  background-image: url('https://nmhanhh.github.io/devhank_neocities_resource/wallpaper/ozoni-new-year-soup.png');
  background-size: cover;
  background-position: bottom;
}
#fortunecookie{
  width: 200px;
  max-width: 200px;
  margin: 5px;
}
#cookieNote{
  color: orange;
  text-shadow: 1px 1px #0851B0;
}
#cookieResult{
  color: #CD3E52;
  text-shadow: 1px 1px 1px white;
}
#theme{
  background-image: url('https://nmhanhh.github.io/devhank_neocities_resource/wallpaper/mandarinoranges.png');
  background-size: cover;
  background-position: center;
  color: beige;
  text-shadow: 1px 1px black;
  padding: 5px;
  width: 200px;
  max-width: 200px;
}
.messagepaper{
  margin-top: 5px;
  border: 1px solid grey;
  box-shadow: 1px 1px 5px brown;
  background-image: url('https://nmhanhh.github.io/devhank_neocities_resource/wallpaper/whitewall.png');
  background-size: cover;
  background-position: bottom;
  padding: 5px;
  width: 230px;
  max-width: 230px;
}
.broken{
  display: none;  
}
.copyMessage{
  background-image: url('https://nmhanhh.github.io/devhank_neocities_resource/wallpaper/omikuji.png');
  background-size: cover;
  background-position: right;
  display: none;  
}
.copyContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}
.copyMessage em{
  display: block;
  padding: 15px;
  color: gold;
  text-shadow: 1px 1px #AD2C65;
}
.brokencookie{
  width: 150px;
  max-width: 150px;
}
#cookieYes{
  margin: 5px 0;
}
#toembed{
  padding: 5px;
  color: white;
  text-shadow: 1px 1px #0851B0;
  background-image: linear-gradient(to right, #AD2C65, #CD3E52, #E26142, #F29538)  
}
.hidden{
  display: none;
}
.container{
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.toleft{
  animation: moveLeft 0.2s ease-in-out; 
}
.toright{
  animation: moveRight 0.2s ease-in-out; 
}
@keyframes moveLeft{
  0% { transform: translateX(0px); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(-20px); }
  60% { transform: translateX(-30px); }
  80% { transform: translateX(-40px); }
  100% { transform: translateX(-50px); }
}
@keyframes moveRight{
  0% { transform: translateX(0px); }
  20% { transform: translateX(10px); }
  40% { transform: translateX(20px); }
  60% { transform: translateX(30px); }
  80% { transform: translateX(40px); }
  100% { transform: translateX(50px); }
}