@font-face {
  font-family: 'Rainy Hearts';
  src: url(/fonts/rainyhearts.ttf); }
  
body {
  background-image: url('/kitchen-graphics/gingham.png');
  background-repeat: repeat;
  background-size: 500px;
  font-family: 'Rainy Hearts';
  font-size:20px;
}

h3 {
  font-size:25px;
  }

.entry {
  width: 700px;
  margin: 55px;
  margin-bottom:80px;
  border: 25px solid transparent;
  background-color: white;
  border-image: url(/kitchen-graphics/frame.png) 25% round;
  border-image-outset:19px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  }

.bar {
  position:fixed;
  width:100%;
  height:28px;
  top:0;
  left:0;
  z-index:2;
  background-image: url('/kitchen-graphics/topthing.png');
  background-repeat: repeat-x;
  }
  
.title {
  width:600px;
  margin-left:105px;
  margin-bottom:-25px;
  margin-top:20px;
  }
  
.foodpic {
  width:150px;
  margin:15px;
  float:right;
  }
  
.egg {
  position:fixed;
  bottom: 15px;
  right: 70px;
  width: 300px;
  transform: rotate(10deg);
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  transition:0.3s ease;
  z-index:3;
  }
.egg:hover {
  transform: rotate(5deg);
  }