/* Define display styles for HTML5 elements */
section {
  display: block;
}

/* Other styles */
body {
  text-align: center;
  background-color: rgb(0, 0, 0);
}

.carrossel {
  margin-top: 20px;
}

.imagemPrincipal {
  display: block;
  width: 80%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

.imagens {
  margin-top: 20px;
}

.imagemCarrossel {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.imagemCarrossel:hover {
  transform: scale(1.1);
}
