/*Classes an stuff*/
.navigation

/*OVERWRITING STUFF!!*/
body {
  /*I like grid :)*/
  display: grid;
  grid-template-columns: 10% auto;
  grid-gap: 50px;
  color: #FFDECE;
  font-size: 24px;
  background-color: #51161D;
  background-image: url("ui/brick.png");
  background-repeat: repeat;
  padding: 0px 100px;
  font-weight: 400;
}

a {
  color: #F29B8A;
  text-decoration: underline solid transparent;
  transition: text-decoration 0.3s ease;
}
a:visited, a:active {
  color: #DB7162;
}
a:hover {
  color: #FFDECE;
  text-decoration: underline solid Currentcolor;
}

strong {
  color: #61E8D7;
  font-weight: bold;
}

h1 {
  color: #61E8D7;
  font-weight: bolder;
  font-size: 48px;
  text-transform: uppercase;
  padding: 20px 0px;
}

p {
  padding: 10px 20px;
}

footer {
  background-color: #6266E0;
  min-width: 100%;
}
