:root {
  --primary: #ffffff;
  --primary-text: #1a1a1a;
  --secondary: #ff1dec;
  --secondary-text: #ffffff;
  --accent: #505050;
  --accent-text: #ffffff;
}
main > .container {
  padding: 60px 15px 0;
}
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #ffe173;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.logo {
  padding-top: 14px;
  text-align: center;
}
.sitelogo{
  height: 30px;
}
.mixmedia{
  width: 60%;
}

/* Timer Row*/
.timerrow {
  margin-bottom: -20px;
}

.timerbox {
  border-radius: 25px;
  padding: 6px 1px 0px 1px;
  width: 100%;
  background-color: #f5f5f5;
}

.color-change {
  animation: color-change 1s infinite;
}

@keyframes color-change {
  0% { color: #9e0b0f; }
  40% { color: #9e005d; }
  80% { color: #630460; }
}

@media (min-width: 1200px)
{
  .sitelogo{
    height: 44px;
  }
  .mixmedia{
    width: 40%;
  }
  .timerbox {
    border-radius: 25px;
    padding: 6px 1px 0px 1px;
    width: 50%;
    background-color: #f5f5f5;
  }
}

.boombox{
  width: 60%;
}

a {
  text-decoration: none;
}

header {
  background-color: #ed739e;  
}

footer a {
  color: white;
}

.bg1 {
  background-color: #ffe173;
}
.bg2 {
  background-color: #edcb4d;
}
.bg3 {
  background-color: #3a5381;
  color: white;
}
.bg4 {
  background-color: #31fec0;
}
.bg5 {
  background-color: #00bff3;
}
.bg6 {
  background-color: #8560a8;
}


/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* boxcontainer around content */
.boxcontainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.boxcontainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the boxcontainer to the left */
.left {
  left: 0;
}

/* Place the boxcontainer to the right */
.right {
  left: 50%;
}

/* Add arrows to the left boxcontainer (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right boxcontainer (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for boxcontainers on the right side */
.right::after {
  left: -12px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}
.thumb
{
  height: 300px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 28px;
  }
  
  /* Full-width boxcontainers */
  .boxcontainer {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .boxcontainer::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right boxcontainers behave like the left ones */
  .right {
  left: 0%;
  }
  .thumb
  {
  height: 180px;
  }
}

.fixed-top-revised
{
  width: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: inherit;
  z-index: 1030;
}
.navbar-toggler
{
  border-color: none;
}

.navbar-toggler:focus
{
  box-shadow: none;
}

