/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   */

   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  var today = new Date();
  var hourNow = today.getHours();
  var greeting;
  var msgWelcome = document.querySelector('h5');

  if (hourNow > 18){
    greeting = "Good evening!";
  } else if (hourNow > 12){
    greeting = "Good Afternoon";
  } else if (hourNow > 0){
    greeting = "Good Morning";
  } else{
    greeting = "Welcome";
  }

  msgWelcome.textContent = greeting;

/*=========================================
    Main Styles
    =========================================*/
    body {
      font-family: sans-serif;
    }

    ul{
      width: 120px;
      position: absolute;
      overflow: hidden;
    }

    .leftside{
      position: absolute;
      top: 45%;
    }

    .leftside li{
      list-style-type: none;
      padding: 15px;
      transition: .6s;
      color: white;
      position: relative;
      cursor: pointer;
    }

    .leftside li i{
      font-size: 40px;
    }

    .leftside li:hover {
      padding: 20px 40px;
    }

    .leftside li:nth-child(1){
      background: #3b5998;
    }
    .leftside li:nth-child(2){
      background: #00aced;
    }
    .leftside li:nth-child(3){
      background: #dd4b39;
    }
    .leftside li:nth-child(4){
      background: #007bb6;
    }
    .leftside li:nth-child(5){
      background: #cb2017;
    }


    .fa {
      padding: 20px;
      font-size:30px;
      width: 30px;
      text-align: center;
      text-decoration: none;
      margin: 5px 2px;
      border-radius: 50%;
    }

    .container {
      text-align: center;
      display: inline-block;
      width: 1200px;
      margin: 10px;
      padding: 20px;
      box-shadow: inset 5px 5px 450px 5px black;
    }

    .video {
      text-align: center;
      display: inline-block;
      border: 2px solid;
      box-shadow: 5px 10px red;
      padding: 10px;
    }

    .rotate {
      transform: rotate(-90deg);
      position: absolute;
      top: 90%;
    }

    #example3 {
      border: 2px solid;
      text-align: center;
      display: inline-block;
      padding: 40px;
      box-shadow: inset 0px 0px 103px 0px red;
    }

    #example4 {
      border: 2px solid;
      text-align: center;
      display: inline-block;
      padding: 40px;
      box-shadow: inset 105px 105px 105px 105px red;
    }


    .footer {
      text-align: center;
    }