@font-face {
  font-family: 'pixelmix';
  src: url("./assets/fonts/pixelmix.ttf");
}

h2 {
  font-family: 'pixelmix';
  color: #dddddd;
  font-size: 1rem;
}

h1 {
  font-family: 'pixelmix';
  color: #dddddd;
  font-size: 2rem;
}

body {
  background-color: #2f1f36;
}

.bg-color {
  background-color: #2f1f36;
}

.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;  
}

.div-image {
  position: relative;
  display: inline;
  z-index: 0;
}
.imtip {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.imtip-below {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.img-soc-icon {
  width: 60px;
  height: 60px;
  /* margin: 5px; */
}
.img-soc-icon-gray {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
  /* margin: 5px; */
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.hidden-cl {
  opacity: 1;
  transition: all 0.5s; 
  transform: translateX(-100%);
  /* filter: blur(5px); */
}

.grayscale-icon {
  filter: grayscale(100%);
  cursor: not-allowed;
}

.medium-icon {
  border-radius: 10%;
}

.hidden-ml {
  opacity: 1;
  transition: all 1s; 
  transform: translateY(-100%);
  /* filter: blur(5px); */
}

.hidden-rl {
  opacity: 1;
  transition: all 1s; 
  transform: translateX(100%);
  /* filter: blur(5px); */
}

.show-cl {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
  /* filter: blur(0); */
  /* transition: all 0.5s; */
}
