@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto Condensed', sans-serif;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
.buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.primary {
  text-decoration: none;
  color: white;
  margin: 1rem;
  padding: 0.8rem;
  background-color: #dc2626;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  margin-right: 0.5rem;
  letter-spacing: 2px;
}
.secondary {
  text-decoration: none;
  color: #dc2626;
  margin: 1rem;
  padding: 0.7rem;
  border: 2px solid #dc2626;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  margin-right: 0.5rem;
  letter-spacing: 2px;
}
.content h1 {
  color: #dc2626;
}
