*{
    box-sizing: border-box;
  }
  
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  [class*="col-"] {
    float: left;
    padding: 15px;  
  }
  
  html {
    font-family: "Fantasy", fantasy;
    color:#ffffff
  }
  
  .header {
    background: linear-gradient(#14ffe9,#5500ff,#ff00e0);
    color: #ffecec;
    padding: 15px;
  }
  
  .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    padding: 8px;
    margin-bottom: 7px;
    background: linear-gradient(#fefefe,#5500ff,#14ffe9);
    color: #fffefe;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  
  .menu li:hover {
    background: linear-gradient(#ffffff,#5500ff,#14ffe9);
  }
  
  .aside {
    background: linear-gradient(#ff00e0,#5500ff,#14ffe9);
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  
  .footer {
    background: linear-gradient(#ffffff,#ff0000,#ff00e0);
    color: #000000;
    text-align: center;
    font-size: 12px;
    padding: 10px;
  }
  
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;   
  }

  body {
    background-color: #000000;
  }

  a:link {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: none;
  }
  
  a:visited {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:active {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }