body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

h1 {
  color: #333;
  text-align: center;
}

#countries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  width: 90%;
  margin: 0 auto;
  background-color: #d1c6c6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: background-color 0.3s;
}

/* Contenedor para bandera y nombre */
.pais-container {
  display: flex;
  flex-direction: column; /* Apila la bandera y el nombre verticalmente */
  align-items: center;
  margin: 15px;
}

.countries {
  width: 250px;
  height: 150px;
  margin: 10px;
  border-radius: 10px;
  cursor: pointer;
}

/* Estilo para el nombre del país */
.nombre-pais {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 5px;
}

/* Estilos para la ventana flotante */
.ventana {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modo {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  width: 300px;
}

.modo img.modo-flag {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.btnCerrar {
  background: #ff5c5c;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.btnCerrar:hover {
  background: #1f0303;
}





