* {
    box-sizing: border-box;
  }

body {
    margin: 0;
    font-family: "Segoe UI";
    min-height: 400px;
    margin-bottom: 100px;
    clear: both;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #f3f3f3;
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
  }

  #logo {
      float: left;
  }
  #logo a {
    color: #fc5555;
    font-weight: bold;
    margin-left: 50px;
  }

  .navbar p {
      font-size: 18px;
  }
  
  .navbar li {
    float: right;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .navbar li a {
    display: block;
    color: #666;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .navbar li a:hover:not(.active) {
    background-color: #ddd;
  }
  
  .navbar li a.active {
    color: white;
    background-color:#fc5555;
  }

  #pageOneHeader {
      margin-top: 50px;
  }

  .column {
    float: left;
    width: 50%;
    padding: 10px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  .row {
    margin-left: 150px;
    margin-top: 100px;
  }

  #column1 {
      margin-top: 50px;
  }

  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fc5555;
    color: white;
    text-align: center;
 }

 #demoHeader {
     margin-top: 50px;
     margin-left: 65px;
 }

 section {
     text-align: center;
 }
 section h2 {
     color: #fc5555;
 }

 #section1Demo {
     margin-top: 100px;
 }

 #section2Demo {
     margin-top: 150px;
 }

 #pricingSection1 {
     margin-top: 50px;
     text-align: center;

 }

.pricingColumns {
    width: 73.3%;
    padding: 8px;
  }
  
  .price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
  }
  
  .price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
  }
  
  .price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
  }
  
  .price .grey {
    background-color: #eee;
    font-size: 20px;
  }
  
  .button {
    background-color: #fc5555;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
  }

  #column2 {
      margin-top: 75px;
  }