/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
/*---------------------------------------------------END OF THE STYLE RESET-------------------------------------------*/

/* MY STYLE RULES START HERE*/

/*------------PAGE STYLING-----------*/

body {
  background-color: #f5efe0;
  color: #000000;
  margin: 0 auto;
}

/*------------HEADER-----------*/
.header {
  padding: 60px 0;
}

.logo {
  background-color: #6e9770;
  padding: 0.5em;
}

.logo img {
  display: block;
  height: auto;
  width: 300px;
  padding-top: 2em;
  padding-bottom: 2em;
  max-width: 100%;
  margin: 0 auto;
}

/*----------MAIN CONTENT-----------*/
main {
  margin-left: 15px;
  margin-right: 15px;
  padding: 2em;
}

/*---------HEADINGS & PARAGRAPHS----------*/
h1,
h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 2.5em;
  font-style: bold;
  font-weight: 400;
  text-align: left;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

h2 {
  border-bottom: 1px solid #000000;
  text-align: left;
  padding: 0.5em 0;
}

p {
  font-family: "Raleway", serif;
  font-size: 1.5em;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}

h1 + p {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

p + p {
  padding-bottom: 0.5em;
}

/*---------COLUMNS----------*/
.column-one,
.column-two {
  display: block;
  float: center;
  padding: 0.5em;
}

.column-one ul,
.column-two ul {
  list-style-type: none;
}

.column-one li,
.column-two li {
  display: list-item;
  list-style-type: none;
  font-family: "Raleway", serif;
  font-size: 1.5em;
  font-weight: 400;
  text-align: left;
  padding: 0.5em 0;
  margin-top: 0 auto;
}

/*-----------LINK STATES----------*/

a:visited,
a:link {
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

a:hover,
a:active {
  color: #000000;
  text-decoration: none;
}

/*----------FOOTER----------*/
footer {
  background-color: #6e9770;
  display: flex;
  flex-wrap: wrap; /* Allows responsiveness */
  justify-content: space-around; /* Spaces out the columns */
  max-width: 100%;
}

.footer h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 2em;
}

.footer p {
  font-family: "Bodoni Moda", serif;
  font-size: 1.2em;
}

.footer h3,
.footer p {
  font-weight: 600;
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: #f5efe0;
}

footer ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 5px;
}

footer li a {
  font-family: "Raleway", serif;
  text-align: center;
  font-size: 1.5em;
  font-weight: 400;
  padding: 0.5em 0.5em;
  margin-top: 0 auto;
}
