body, html {
  margin: 0;
  background: #F3F3F3;
  color: #777;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}
a {
  color: #555;
}
hr {
  width: 100%;
  margin: 0;
  border: none;
  outline: none;
  background-color: #AAA;
  height: 1px;
  display: inline-block;
}
#flexBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  margin-bottom: 50px;
}
#contentWrapper {
  width: calc(90% - 50px);
  max-width: 750px;
  text-align: left;
}
#intro {
  text-align: left;
  display: block;
  background: #FFF;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 1px 1px 2px #AAA;
}
h1 {
  font-size: 25pt;
  font-weight: normal;
}
.icon {
  height: 35pt;
  width: 35pt;
  display: inline-block;
  margin: 10px;
}
.smaller_icons {
  height: 12pt;
  opacity: 0.5;
}
.smaller_icons:active {
  opacity: 0.25;
}
.socialItem {
  transition: transform 500ms ease;
}
.socialItem:hover {
  transform: scale(1.15);
}
#share {
  position: fixed;
  left: 0;
  bottom: 10px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#share a {
  padding: 0 10px;
  font-size: 10pt; /* Adjust as needed */
  text-transform: uppercase; /* Optional for style */
  text-decoration: none !important;
  color: #AAA !important;
}

#share::before,
#share::after {
  content: "";
  flex: 1;
  height: 1px; /* Line thickness */
  background-color: #AAA; /* Line color */
  margin: 0 10px; /* Space around the text */
}