    .h1, h1{font-size: 18px !important; margin:20px 0px 0px 0px !important}
    .fb-like, p#breadcrumbs{margin: 10px 10px 0px 0px !important; float:left;}
    .h2, h2{font-size: 16px !important;}
    .h3, h3{font-size: 14px !important;}
    .h4, h4{font-size: 12px !important;}
/*    .h1, h1, .h2, h2{text-transform: uppercase;} */
    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{font-weight:600 !important; float:left; width: 100%;}
    .h2, .h3, .h4, .h5, .h6, h2, h3, h4, h5, h6{margin: 10px 0 5px 0 !important;}
    
    
    body {
  margin: 0;
  padding: 0;
}
.bg-light{ background-color: #bbe1ff!important;}
.design-container {
  height: 200vh;
  background: linear-gradient(to bottom, #ffffff, #90238e); /* Standard syntax */
}

.square {
  width: 450px;
  height: 450px;
  background: linear-gradient(to bottom, rgba(240,240,180, 0.2), rgba(100, 20, 30, 0.8));
  
  position: absolute;
  transform: rotate(45deg);
  top: 170px;
  left: calc(50vw - 225px);
  animation: squareMove 2.25s;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(to bottom, rgba(255,255,255, 0.2), rgba(20, 150, 180, 0.8));  
  position: fixed;
  top: 300px;
  left: calc(50vw - 100px);
  animation: circleMove 2s;
  line-height: 200px;
  text-align: center;
  font-size: 24px;
}

.text {
  font-family: "helvetica", sans-serif;
  text-transform: uppercase;
  letter-spacing: 15px;
  font-size: 24px;
  margin: 0;
  padding: 0;  
  position: absolute;
  top: 388px;
  left: calc(50vw - 145px);
/*  background: linear-gradient(to right, rgba(255,80,80, 0.5), rgba(110,0,10,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
*/  
  animation: textMove 2.5s;
}

@keyframes squareMove {
  from {top: -450px;}
  to {top: 170px;}
}

@keyframes circleMove {
  from {top: -500px;}
  to {top: 300px;}
}

@keyframes textMove {
  from {top: -500px;}
  to {top: 388px;}
}