body {
  background-color: black;
  background-image: url(https://files.catbox.moe/g0q0h1.PNG);
  font-family: 'vcr_mono';
}

.wrapper {
  display: flex;  
  flex-flow: row wrap;
  font-weight: bold;
  text-align: center; 
}

.wrapper > * {
  padding: 10px;
  flex: 1 100%;
}

.header {
  background: black;
  border: 10px solid red;
  color: white;
  font-size: 35px;
}

.blue-text {
  color: blue;
  font-size: 35px;
}

.footer {
  background: black;
  border: 10px solid red;
  color: white;
  font-size: 35px;
}

.main {
  background: black;
  border: 10px solid red;
  color: white;
  font-size: 35px;
}

.moron {
  width: 300px;
  height: 325px;
  padding: 10px;
}

h1 {
  padding: 10px;
  font-size: 65px;
  color: red;
  text-align: left;
  text-decoration: underline;
  margin: 0;
  height: 25px;
}

.info {
  padding: 10px;
  text-align: left;
  height: 40px;
}


.text-content {
  padding: 15px;
  border-radius: 5px;
  line-height: 1;
}

.aside-1 {
  background: black;
  border: 10px solid red;
  color: white;
  font-size: 35px;
}

h2 {
  margin: 0px;
  color: blue;
  font-size: 60px;
  text-decoration: underline;
}

.done {
  text-decoration: line-through;
  color: gray;
}

.aside-2 {
  background: black;
  border: 10px solid red;
  color: white;
  font-size: 35px;
}

@media all and (min-width: 600px) {
  .aside { flex: 1 0 0; }
}

@media all and (min-width: 800px) {
  .main    { flex: 3 0px; }
  .aside-1 { order: 1; } 
  .main    { order: 2; }
  .aside-2 { order: 3; }
  .footer  { order: 4; }
}

body {
  padding: 2em; 
}

