.quadrado-estiloso {
  width: 500px;
  height: 200px;

  background-color: rgba(39, 2, 39, 0.256);
  border: 1px solid black;
  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0 auto;
}

body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./eu.jpg);

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  min-height: 100vh;

  margin: 0;
}

h1 {
  color: rgb(214, 200, 219);
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 80px;
  display: flex;
  justify-content: center;
  text-align: center;
  text-shadow: 2px 2px 0px #630463,
    0 0 10px #f665cd,
    0 0 20px #4d034e;
}

h2 {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #f2b1e0;
  font-family: Roboto;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.8));
}

.container-colunas {
  display: flex;
  margin: 0 auto;
  gap: 400px;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #f2b1e0;
  max-width: 600px
}

.coluna-esquerda,
.coluna-direita {
  flex: 1;
}

.container-galeria {
  text-align: center;
  padding: 20px;
}


.galeria-imagens {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}


.imagem-item {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease;
}


.imagem-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.imagem-item:hover {
  transform: scale(1.1);
  border-color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h4 {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #f2b1e0;
}