:root {
  --background-color: #4a525a;
  --link-color: #3e78b2;
  --primary-color: #004ba8;
  --sconday-color: #4a525a;
  --primary-hover-color: #3e78b2;
  --base-border-radius: 16px;
  --basic-border-radius: 8px;
}

* {
  font-family: "Baloo 2", cursive;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--background-color);
  color: white;
}

main {
  padding: 8px;
  margin: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

article {
  text-align: center;
  color: white;
  border-radius: var(--base-border-radius);
  padding: 16px;
  transition: all 0.2s ease;
  background: #004ba8;
}

article h1 {
  font-size: 36px;
}

article ion-icon {
  font-size: 128px;
}

article:hover {
  background: var(--primary-hover-color);
}

h2 {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

#app-header {
  background: #07070a;
  color: white;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
