*{
  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(#ff0000,#a00707,#4e0000);
  color: #ffecec;
  padding: 15px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background: linear-gradient(#ff0000,#a00707,#4e0000);
  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(#ff0000,#a00707,#4e0000);  
}

.aside {
  background: linear-gradient(#ff0000,#a00707,#4e0000);
  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(#ff2929,#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;
}