* {
  transition: 0.3s linear;
}

body {
  margin: 0;
  background: #eeeeee;
  font-family: Arial, Cambria, sans-serif;
  font-size: 17px;
  color: #333333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
}

header {
  padding: 10px;
  margin-bottom: 12px;
  background: #ffffff;
  color: #333333;
  line-height: 0.8;
}

.content-wrap {
  padding: 20px;
  margin-bottom: 20px;
  background: #f3f0f9;
}

aside {
  padding: 20px;
  margin-bottom: 20px;
  background: #f9f9f9;
  border: 2px solid #0033bb;
  line-height: 0.9;
}

footer {
  padding: 20px;
  background: #eeeeee;
  text-align: center;
  line-height: 1;
}

ul {
  background: #000000;
  font-weight: 700;
}

a {
  font-weight: 300;
  color: #0033bb;
  text-decoration: none;
  font-size: 17px;
  margin: 10px 5px;
  display: block;
}

a:hover {
  font-weight: 300;
  color: #022276;
  text-decoration: underline;
  font-size: 17px;
}

h1 {
  font-size: 24px;
  color: #333333;
}

p {
  text-align: justify;
  font-size: 17px;
  color: #333333;
  margin: 10px 0;
}

p.hh {
  text-align: right;
  vertical-align: top;
  font-size: 17px;
  color: #333333;
  margin: 10px;
}

.b {
  vertical-align: text-top;
  float: left;
  font-size: 17px;
  margin: 5px;
}

@media (min-width: 736px) {
  .main-content {
    display: flex;
    flex-wrap: wrap; 
  }
  .content-wrap {
    flex: 1; 
    width: calc(100% - 350px);
    margin-right: 20px;
  }
  aside {
    width: 350px;
    margin: 0; 
  }
}