body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

#tesla-logo {
  width: 130px;
  height: 130px;
  animation: pulse 2s ease 2s infinite alternate;
}

p.tds-text--h4 {
  color: var(--tds-text--color)
}

a.tds-btn {
  left: 0;
  margin-top: 16px;
}

a.tds-btn:hover, a.tds-btn:focus {
  background-color: var(--tds-color--blue20)
}

@keyframes pulse {
  from {opacity: 0.3;}
  to {opacity: 1;}
}
