@import url('https://fonts.googleapis.com/css2?family=Cherry+Cream+Soda&display=swap');

body {
  background: url('images/checkered-bg.png') repeat;
  font-family: 'Cherry Cream Soda', cursive;
  margin: 0;
  padding: 0;
  color: #ff0044;
  text-align: center;
}

.logo {
  font-size: 4rem;
  color: red;
  text-shadow: 3px 3px 0 yellow, -3px -3px 0 blue;
}

.menu a {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  background: yellow;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  color: red;
  border: 3px solid blue;
}

.main-img {
  max-width: 400px;
  animation: floaty 3s infinite ease-in-out;
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}