/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hace que el contenido ocupe toda la altura del navegador */
html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor principal en columna centrado */
.contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Logo redondo con imagen centrada */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden; 
}

.logo img {
  width: 200%;
  height: 200%;
}

.etiquetas {
  display: flex;
  flex-direction: row;
  gap: 80px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.etiqueta {
  background-color: #6C757D;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 30px;
  white-space: nowrap;
}


/* Texto inferior */
.construccion {
  margin-top: 50px;
  font-size: 30px;
  color: #333;
}
