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

html {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
}

body {
  margin-bottom: 64px;
}

.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;
  width: 100%;
}

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-radius: 100%;
  border: 5px solid white;
}

/* --------- Title / Subtitle ------------------------------------------------------------------ */
h1 {
  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;
  text-decoration: none !important;
}
@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.7);
}
.fuse-core-extra a {
  color: rgba(255, 255, 255, 0.9);
  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: 64px;
  background: rgba(0, 0, 0, 0.3);
  line-height: 22px;
  padding: 10px 0;
  width: 100%;
  font-size: smaller;
  color: rgba(255, 255, 255, 0.8);
}
footer .col {
  padding: 0;
}
footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none;
  color: white;
}

/*# sourceMappingURL=theme.css.map */