html, body {
  font-family: 'Open Sans',Arial,Helvetica,sans-serif;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 44px;
}

.fullscreen-background {
  background: url("../images/background.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

div.glass-pane {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  min-height: 42vh;
  /* always cover at least the sky */
}

div.fuse-core-content {
  color: white;
}

/* --------- Avatar ---------------------------------------------------------------------------- */
#avatar {
  height: 180px;
  border: 5px solid white;
}

/* --------- Title / Subtitle ------------------------------------------------------------------ */
h1 {
  letter-spacing: 0.1em;
  font-size: 3em;
}
@media (max-width: 575.98px) {
  h1 {
    /* used on bootstrap size 'xs' */
    letter-spacing: 0;
  }
}

h3 {
  font-size: 1.2em;
}

/* --------- The Main Links -------------------------------------------------------------------- */
div.row.links > div {
  white-space: nowrap;
  padding: 0;
}
div.row.links a {
  color: white;
  border-radius: 100%;
  border: 2px solid white;
  display: inline-block;
  font-size: 1.8em;
  line-height: 1em;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  div.row.links a {
    /* used on bootstrap size 'xs' */
    border-radius: 10px;
    width: 100%;
  }
}
div.row.links a:hover {
  text-decoration: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  background-color: rgba(0, 0, 0, 0.5);
}
div.row.links a > i {
  display: inline-block;
  margin: 16px 12px;
}
div.row.links a > span {
  margin-right: 15px;
}

/* --------- Extra HTML ------------------------------------------------------------------------ */
.fuse-core-extra {
  color: rgba(255, 255, 255, 0.9);
}
.fuse-core-extra a {
  color: white;
  border-radius: 3px;
  padding: 0 2px;
}
.fuse-core-extra a:hover {
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.6);
}

/* --------- Footer ---------------------------------------------------------------------------- */
footer {
  position: absolute;
  bottom: 0;
  height: 44px;
  line-height: 24px;
  padding: 10px 0;
  width: 100%;
  font-size: smaller;
  color: rgba(255, 255, 255, 0.4);
}
footer .col {
  padding: 0;
}
footer a {
  color: rgba(255, 255, 255, 0.6);
}
footer a:hover {
  text-decoration: none;
  color: white;
}
