body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;

  background-image: url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExNzh2ODlvZW81bHp3emgwcHJsamdwMDVvZGJod2VhY3A3eGU3aW43NyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/kHsUiJD0pOLItuf0Cb/giphy.gif");
  background-color: pink;
  color: white;
  font-family: times;
}

/* Text bubble */
.bubble {
  position: relative;
  max-width: 250px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

/* little triangle */
.bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 30px;
  border-width: 12px 10px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

/* outline for the triangle */
.bubble::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 28px;
  border-width: 14px 12px 0;
  border-style: solid;
  border-color: #000 transparent transparent;
}

/* Floating icon */
.floating-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  animation: float 2s infinite;
  cursor: pointer;
  z-index: 1000;
}

/* Float animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@font-face {                  
font-family: 'CHNOPixel';
src: url(https://humantooth.neocities.org/fonts/CHNOPixelCodePro-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
