#balloon-container {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(234,245,253,1) 0%, rgba(255,255,255,1) 100%);
  z-index: -1;
  height: 100vh;
  width: 100vw;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.balloon {
  height: 125px;
  width: 105px;
  border-radius: 75% 75% 70% 70%;
  position: relative;
}

.balloon:before {
  content: "";
  height: 75px;
  width: 1px;
  padding: 1px;
  background-color: #FDFD96;
  display: block;
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: auto;
}

.balloon:after {
    content: "▲";
    text-align: center;
    display: block;
    position: absolute;
    color: inherit;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes float {
  from {transform: translateY(100vh);
  opacity: 0.6;}
  to {transform: translateY(-50vh);
  opacity: 0;}
}

/* Theme overrides when active */

#page-header {
  background: none !important;
}

ul.navbar-nav a:link, ul.navbar-nav a:visited {
  border-bottom: 2px solid transparent !important;
}

ul.navbar-nav a:hover, ul.navbar-nav a:active {
  border-bottom: 2px solid #2600AA !important;
}