@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* arquivo css focado na padronização do body, cabeçalho e rodapé */

html {
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  color: #FFFFFF;
}

body {
  background-color: #11130E;
  overflow-x: hidden;
}

/* cabeçalho onde logo e links estão em extremidades diferentes. tentaremos centralizar os links */

.cabecalho {
  background-color: #11130E !important;
  font-family: "Nunito Sans", sans-serif !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
  padding: 0.8rem 3rem;
}

.navbar ul {
  display: flex;
  gap: 0.8rem;
  list-style: none;
}

.navbar ul a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  transition: all 0.3s;
}

.navbar ul a:hover {
  background-color: #f8de4f;
  color: #11130E;
  padding: 12px 10px;
  border-radius: 25px;
}

@keyframes rotacao {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cabecalho #logo-hogwarts {
  text-decoration: none;
  color: #FFFFFF;
  width: 92px;
  animation: rotacao 5s 0s forwards;
}

main .text-style {
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  background-color: #11130E;
  color: #f8de4f;
}

footer {
  padding: 2rem 0;
  background-color: black;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  bottom: 0;
  text-align: left;
}

footer img {
  width: 50px;
  filter: invert(1);
}


footer .container-footer-imagens {
  display: flex;
  align-items: center;
}

footer h2 {
  font-size: 1rem;
}

#brasao {
  padding-top: 10px;
  height: 80px;
  width: 80px;
  margin-left: 20px;
  filter: invert(0);
}

#imgministerio {
  width: 100px;
  height: 90px;
  margin-right: 100px;
}

.conteudoFigura1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.logoTitle {
  font-size: 20px;
  color: white;
  padding-top: 10px;
  margin-left: 15px;
}