/*
 * Theme Name: Ryan Ayers's Assignment 3B
 * Author: Ryan Ayers
 * Text Domain: assignment3B
 */

body{
    min-height: 100vh;
    background-color: green;
    color: white;
    font-family: 'Verdana', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
 }
 
 h1{
    text-align: center;
 }
 
 main{
    display: inline-block;
    vertical-align: top;
    
 }
 
 aside{
    display: inline-block;
    vertical-align: top;
    color: white;
 }
 
 footer{
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background-color: white;
    color: black;
    text-align: center;
    
 }
 
  .all_content{
    display: flex;
    flex: 1; 
 }
 
 .content_area{
    width: 75%;
    flex: 1;
    padding-left: 15px;
 }
 
 .sidebar_section{
    width: 25%;
    order: -1;
    border: 1px solid black;
 }