
body {
  background-color: #737373;
  color: Black;
  font-family: "Lugrasimo", cursive;
  letter-spacing: 0.5px;
text-align: center;
}


img {
  width:200px;
}

p {
  text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.apple {
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.4));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


.car-wrapper {
  position: relative;
  display: inline-block;
}

.car-shadow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 60%;
  height: 10px;
  background: rgba(0,0,0,0.35);
  filter: blur(8px);
  transform: translateX(-50%);
  z-index: -1;
}


.static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://i.pinimg.com/originals/0e/4e/15/0e4e1507132a14cfd27bb3d651a19a46.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 9999;
}


.flake-gif {
  width: 15px;
  height: auto;
}


}
