* {
  box-sizing: border-box;
}

html {
  background-color: #b69dd9;
  color: #50207f;
  font-size: 16px;
}

/* HEADER */

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0px;
}

/* MENU BAR */

#menubar {
  width: 100%;
  background-color: #c5b1e3;
  border-radius: 12px;
  margin: 10px 0px;
}

#menubar>div {
  width: calc(25% - 5px);
  height: 60px;
  margin: 4px;
  margin-left: 0px;
  padding: 0px;
  display: inline-block;
  background-color: #c1a7e4;
  color: #50207f;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: 1s;
}

#menubar>div:hover {
  color: black;
}

#nojs #menubar>div:hover {
  background-color: white;
}

@keyframes buttonHover {
  to { color: black; }
}

#menubar button {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  background-color: transparent;
  color: inherit;
  font-size: 1.5rem;;
  position: absolute;
  z-index: 1;
}

#menubar a {
  color: inherit!important;
  text-decoration: none;
}

#menubar div:first-child {
  margin-left: 4px;
}

.bubbleHolder {
  width: 0px;
  height: 0px;
  position: absolute;
}

.bubble {
  background-color: white;
  border-radius: 100%;
  animation-name: bubble;
  animation-duration: 8s;
  position: absolute;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transition: 1s;
}

.bubble.disappear {
  background-color: transparent;
}

@keyframes bubble {
  from {
    width: 0px;
    height: 0px;
    left: 0px;
    top: 0px;
  }
  to {
    width: 4000px;
    height: 4000px;
    left: -2000px;
    top: -2000px;
  }
}

/* CONTENT */

.content>div, .content>p.blurb {
  background-color: #f1e9ff;
  color: black;
  border-radius: 12px;
  padding: 4px;
  border: 4px solid #c5b1e3;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 4px auto;
}

.content>p.blurb {
  text-align: center;
}

.content>div.twocolumn {
  max-width: 1200px;
  padding: 0px;
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.twocolumn>div:first-child {
  position: absolute;
  width: 60%;
  bottom: 0px;
  top: 0px;
  left: 0px;
  padding: 8px;
  overflow: auto;
}

.twocolumn:nth-child(2n)>div:first-child {
  left: auto;
  right: 0px;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0px;
}

.content p {
  margin: 0px;
}

.twocolumn iframe, .twocolumn div:last-child {
  position: absolute;
  width: 40%;
  height: 100%;
  bottom: 0px;
  top: 0px;
  right: 0px;
  border: 0px;
  border-left: 4px solid #c5b1e3;
}

.twocolumn:nth-child(2n) iframe, .twocolumn:nth-child(2n) div:last-child {
  right: auto;
  left: 0px;
  border: 0px;
  border-right: 4px solid #c5b1e3;
  align-content: center;
  align-content-h: center;
}

.twocolumn img {
  max-width: 100%;
  margin: auto;
  display: block;
}
