/* ETIQUETAS CSS QUE INDICAN A WORDPRESS QUE ESTE ES EL TEMA HIJO */
 
/*
Theme Name: appoitmen_hijo
Template: appointment
*/

/* Cluster */
.cluster-imagenes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: space-around;
    margin: 0;
    background: #fff0;
}

.categoriacluster {
     
  width:200px;
  height:200px;
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:25px
}

.categoriacluster a {
  color: white;
  width: 100%;
  height: 100%;

  font-size: 20px;
  text-align: center;
  font-weight: 600;
  background-color: #00000069;
  transition: background-color 0.4s linear 0.1s, color 0.4s linear 0.1s, border 0.4s linear 0.1s;
}
.categoriacluster a:hover {
  color: black;
  background-color: #ffffff8f;
  border: 2px solid black;
  transition: background-color 0.4s linear 0.1s, color 0.4s linear 0.1s, border 0.4s linear 0.1s;
}