html, body {
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 10px;
    background: linear-gradient(133deg,
        rgba(235,217,181,1)20%,
        rgb(243, 236, 239)50%,
        rgb(83, 5, 5)100%);
  }
  
  body {
    width: 80vw;
    min-width: 800px;
    margin: 0 auto;
    height: 100vh;
  }
  
 
  h1, h2 {
    font-family: 'Raleway', sans-serif;
    color: #2a2a2a;
  }
  
  p, li {
    font-family: 'Roboto Condensed', sans-serif;
    color: #2a2a2a;
  }
  
  h1 {
    font-size: 4rem;
     text-align: center;
     text-shadow: 2px 2px 10px black;
  }
  
  h2 {
    font-size: 3rem;
    text-align: center;
  }
  
  p, li {
    font-size: 1.6rem;
    line-height: 1.5;;
  }
  
  header {
    margin-bottom: 10px;
  }
  
  main, header, nav, article, footer, section {
    background-color: rgba(255,255,255,.05);
    padding: 1%;
  }
  
  h1 {
    text-transform: uppercase;
  }
  
  nav {
    height: 50px;
  }
  
  nav ul {
    display: flex;
  }
  
  nav li {
    list-style-type: none;
    text-align: center;
    flex: 1;
  }
  
  nav a, nav span {
    font-size: 2rem;
    height: 3rem;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
  }
  
  main {
    display: flex;
  }
  
  section, article {
    flex: 4;
  }
  
  aside {
    flex: 1;
    margin-left: 10px;
    padding: 1%
  }
  
  aside a {
    float: left;
    width: 50%;
  }
  
  aside img {
    max-width: 100%;
  }
  
  footer {
    margin-top: 10px;
  }

  input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color:  rgb(37, 47, 177);
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  .container {
    border-radius: 5px;
    padding: 10px;
  }
  
  .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  footer {
    text-align: center;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }