.con {
  display: flex;
  flex-flow: row wrap;
  font-weight: bold;
  text-align: center;
  align-content: center;
  justify-content: center;
  border-style: double;
  align-self: center;
  background-image: url(mask.png);
  background-repeat: no-repeat;
  background-size: cover;
  }

  .wrapper {
  display: flex;
  flex-flow: row wrap;
  font-weight: bold;
  text-align: center;
  align-content: center;
  border-style: double;
  border-color: hotpink;
  align-self: center;
  margin: 20%;
  margin-top: 5%;
  flex-wrap: wrap;
  height: max(fit-content, 200px);
  }

  .wrapper > * {
    padding: 10px;
    flex: 1 100%;
    justify-content: center;
    align-items: center;
  }
  .navigation {
    display: flex;
    flex-flow:row-wrap;
    justify-content:space-around;
    border-style: double;
    border-color: hotpink;
    list-style: none;
    background: black;
    margin-bottom: 3.3%;
  }
  .navigation a {
    text-decoration: line-through;
    display: block;
    color: hotpink;

  }
  .footer {
    border-style: double;
    border-color: hotpink;
    margin-top: 3%;
    background-color: black;

  }

  .main {
    text-align: left;
    background: black;
    color: hotpink;
    border-style: double;
    border-color: hotpink;
    font-family: 'MS Gothic';

  }

  .aside-1 {
    display: flex;
    background: hotpink;
    border-style: double;
    border-color: black;
  }

  .inner1  {
    display: flex;
    height: 100%;
    width: 100%;
    align-self: stretch;
    background: black;

  }

  .inner2  {
    display: flex;
    height: 100%;
    width: 100%;
    align-self: stretch;
    background: black;

  }

  .aside-2 {
    display: flex;
    border-style: double;
    border-color: black;
    background: hotpink;
  }
  @media all and (min-width: 600px) {
    .aside { flex: 1 0 0; }
  }

  @media all and (min-width: 800px) {
    .main    {
      flex:  0px;
      flex-grow: 2;
    }
    .aside-1 { order: 1; }
    .main    { order: 2; }
    .aside-2 { order: 3; }
    .footer  { order: 4; }
  }
  body    {
    background-color: black;
  }

  h4     {
    text-align:center;
  }

