* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #333;
    background-attachment: fixed;
}
h1 {
    color: #041323;
    font-size: 72px;
    font-weight: lighter;
    margin-bottom: 12px;
    margin-top: 12px;
}
h2 {
    font-size: 36px;
    margin-bottom: 12px;
    margin-top: 12px;
}
h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 12px;
}
p {
    color: #333;
    
  line-height: 24px;
}

.container {
    width: 1600px;
    margin: 20px auto;
    overflow:auto; 
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid #333;
}

#left, #right { 
  width: 45%; 
  margin:5px; 
  padding: 1em; 
  background: white; 
} 
#left  { float:left;  }
#right { float:right; } 

button {
    padding: 10px 20px;
    background-color: #1b4879;
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}
a.button {
    text-decoration: none;
    color: white;
    text-decoration: none;
}
button:hover {
    background-color: #0056b3;
    text-decoration: underline;
}
ul {
  padding-left : 20px;
  line-height: 24px;
}