body, h1, p, button, footer {
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', sans-serif;
  box-sizing: border-box;
}
body {
  background: url('https://i.pinimg.com/originals/bf/78/09/bf7809ba939168726dc63ee4adc02c55.gif') no-repeat center center fixed; /* pintresting*/
  background-size: cover;
  color: #ffffff;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.content h1 {
  font-size: 4rem;
  line-height: 1.5;
  color: #ecece8;
  text-shadow: 2px 2px 0px #000000;
  margin-bottom: 10px;
}

.highlight {
  color: #fffef9;
  text-shadow: 3px 3px 0px #000000;
}

.content p {
  font-size: 1rem;
  margin: 20px 0;
}

.cta-button {
  background: #ffd740;
  color: #000;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000;
  text-transform: uppercase;
}

.cta-button:hover {
  background: #ffcc00;
}

.supported-by {
  margin-top: 20px;
}

.supported-by p {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.supported-by .logos img {
  width: 50px;
  margin: 0 10px;
  vertical-align: middle;
}

/* Floating Animation */
.floating {
  animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Results Page*/

