/* Configurações Gerais */
header {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

header a:hover {
  color: #fff;
  transform: scale(1.03);
}

.flex {
  display: flex;
}

/* Outras informações */
.form-control-dark {
  border-color: var(--bs-gray);
}

.form-control-dark:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.text-small {
  font-size: 85%;
}

.dropdown-toggle:not(:focus) {
  outline: 0;
}

.meu-btn {
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  border-radius: 20px;
  background-color: blue;
  color: white;
  transition: .2s;
}
.meu-btn:hover {
  box-shadow: 0px 0px 8px rgb(0, 0, 0);

}

/* Estilo do Topo do Site */
section.topo-do-site {
  padding: 40px 4%;
}

section.topo-do-site .flex {
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.topo-do-site h1 {
  font-size: 42px;
  line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
  color: blue;
}

.topo-do-site .txt-topo-site p {
  margin: 40px 0px;
}

.topo-do-site .img-topo-site img {
  position: relative;
  animation: flutuar 2s ease-in-out infinite alternate;
}
@keyframes flutuar {
  0% {
    top: 0;
    right: 10px;
  }
  100% {
    right: 0;
    top: 20px;
  }
}


.lego {
  background-image: url(lego.jpg);
}

.enfeite {
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
  font-style: normal;
}