* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFC0CB;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  animation: float 3s ease-out infinite;
}

@keyframes float {
  50% {
     transform: translate(0, 15px);
  }
}

.title {
  display: block;
  text-align: center;
  font-family: 'Dosis', 'Roboto-Condensed', sans-serif;
  font-weight: 300;
  font-size: 25px;
  color: #ffffff;
}