@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #F44336;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  text-align: center;
  margin: 8px 0px;
}

h1 span {
  background-color: white;
  border-radius: 8px;
  color: #F44336;
  display: inline-block;
  margin: 4px;
  padding: 8px 16px;
}

p, a {
  margin: 4px;
  font-size: 1.25rem;
}

#contador {
  display: inline-block;
  padding: 4px 10px;
  background-color: black;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #fed700;
}