:root {
  --standard1: #ffcc00; /* Amarelo Pikachu */
  --standard2: #e60000; /* Vermelho Pokébola */
  --text-color: #333; /* Cor padrão do texto */
  --background-color: #f8f8f8; /* Fundo claro */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto';
}

/* Header and NavBar */
header img{
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid var(--standard2);
  background-color: var(--standard1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}
.navbar a {
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--standard1);
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.navbar a:hover {
  background-color: var(--standard2);
  color: #fff;
  transform: scale(1.03);
}
.navbar a:active {
  transform: scale(0.98);
  background-color: #b30000;
}

main {
  max-width: 80%;
  min-height: 400px;
  margin: 10px auto;
}

/* Footer */
footer {
  text-align: center;
  width: 100%;
  padding: 10px;
  border-top: 2px solid var(--standard2);
  background-color: var(--standard1);
  color: var(--text-color);
}
.link-acess {
  color: var(--standard2);
  text-decoration: none;
}
.link-acess:hover {
  text-decoration: underline;
}
