* {
    box-sizing: border-box;
    }

body {
    background-color: #f1f1f1; /* Light grey page */
 	margin-right: 0px;
  	margin-left: 0px;
    padding: 0px;
    font-family: sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;  /* Smaller number = wider side margins  - change this*/
    margin: 0 auto;    /* Centers the boxes on the screen */
}

.sidebar, .main-content {
    background-color:  hsl(0, 0%, 100%); /* White background */
    border: 1pt solid #e3f2fd; 
    padding: 20px;
    max-width: 100%; /*change this*/
    /* The "Raised" effect shadows */
   box-shadow: 0 4px 10px 0 #beccd7,
                0 4px 20px 0 #ffffff;
}


.grey-text {
  text-align: center;
  color: grey;
}

/* Desktop sizing */

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .sidebar {
        flex: 0 0 30%; /* Left column size */
    }
    .main-content {
        flex: 1;
    }
    
    .column {
	  float: left;
	  width: 70%;
	  padding: 5px;
	}
	
	/* Clearfix (clear floats) */
	.row::after {
	  content: "";
	  clear: both;
	  display: table;
	}
}

/* Fonts - Sizes, Colors, Formats */

html, body {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    line-height:1.5;

}

html {
    overflow-x: hidden
}

.banner {
	background-color: teal;
	font-size: 24px;
	padding: 10px;
	color: white;
	text-align: center
}

/* FONT CONTROL */

h1 {
    font-size:36px
}

h2 {
    font-size:30px
}

h3 {
    font-size:24px;
    color: grey;
    text-align: center;
}

h4 {
    font-size:20px
}

h5 {
    font-size:18px
}

h6 {
    font-size: 16px
}


h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
    font-weight: 400; 
    color: grey;
    margin:10px 0
}

.text-center {
	    text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #F0FFFF;
}

/* Miscellaneous Items */

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0
}

