* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: "Handserif";
  src: url("./handserif.ttf");
}

:root {
  --color-purple: rgba(18, 7, 41, 1);
}

body {
  background-image: url("./home/img/bg_image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.h-center {
  margin: auto;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.info-bubble {
  background-color: rgba(255, 190, 255, 0.8);
  
  max-width: 90%;
  
  margin: 10px auto 10px auto;
  padding: 50px 50px 50px 50px;
  
  border: 2px solid white;
  border-radius: 30px;
  
  font-family: "Handserif";
  font-size: 25px;
  
  box-shadow: 0px 0px 5px white;
}

.info-bubble-imagefloat img, img.info-bubble-imagefloat  {
  max-width: 15rem;
  max-height: 15rem;
  border-radius: 4px;
  
  box-shadow: 1px 1px 5px var(--color-purple);
}

.info-bubble-imagefloat.clickable img, img.info-bubble-imagefloat.clickable  {
  transition: transform 0.5s;
}

.info-bubble-imagefloat.clickable img:hover, img.info-bubble-imagefloat.clickable:hover  {
  transform: scale(1.05);
}

.info-bubble-flex {
  display: flex;
}

.info-bubble-flex.header img {
  width: 5rem;
  height: 5rem;
  
  box-shadow: 4px 4px 5px var(--color-purple);
}

.info-bubble-flex.header h2  {
  margin-left: 10px;
  margin-right: 10px;
} 