
h1 {
    color: white;
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

h2 {
    color: white;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

button {
  color: #000000;
  background-color: #f0f0f0;
  font-size: 16px;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer
}

.bg-colors {
    animation-name: colors;
    animation: colors 0.2s infinite;
}

.vignette {
    position: fixed;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 200px rgba(0,0,0,1) inset;
  }

@keyframes colors {
    10%   { background: #ff0000; }
    50%   { background: #44ff00; }
    100%  { background: #000000; }
  }

@keyframes growText {
    0% {
      font-size: 16px;
    }
    100% {
      font-size: 72px;
    }
  }

.animated-text {
    display: inline-block;
    animation: growText 0.8s ease-in-out infinite alternate;
  }