/* apply a natural box layout model to all elements */

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* reset rules */

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;
  width: 960px;
  margin: 0 auto;
  font-family: verdana, arial, helvetica, sans-serif;
  background: black;
}

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;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #D9EB37;
}

a:active {
  text-decoration: none;
  color: inherit;
}

/* page header */

header {
  color: white;
  font-size: 3.7em;
  text-align: center;
}

header h2 {
  text-align: center;
  padding: 0.5em;
}

/* main content */

article {
  background: rgb(0, 0, 0);
  position: relative;
  display: block;
  height: 400px;
  padding-top: 100px;
}

article h2 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  margin: 0 0 10px 51px;
}

.favourite {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  background-color: DodgerBlue;
  margin: auto;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid red;
  margin-bottom: 100px;
}

.favourite-column {
  float: left;
  width: auto;
  margin: 8px;
  height: auto;
}

.favourite-column > img {
  width: 162px;
  height: auto;
  border: 1px solid white;
  display: block;
}

.favourite-column > a {
  color: white;
  font-size: 11px;
  display: block;
  padding-top: 10px;
  margin: auto;
  text-decoration: underline;
  width: 80px;
}

.favourite-header {
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 10px;
}

/* @media only screen and(max-width:1200ppx) {
  .favourite-column {
    width: 100%;
    display: block;
  }
} */

#leftarrow,
#rightarrow {
  background: #696565;
  color: white;
  position: absolute;
  z-index: 30;
  text-align: center;
  height: 135px;
  width: 40px;
  top: 67px;
}

article div:hover {
  cursor: default;
}

#leftarrow {
  left: 0;
}

#rightarrow {
  right: 0;
}

#fiveButton {
  display: block;
  width: 100%;
  position: absolute;
  top: 290px;
  color: white;
  text-align: center;
}

#fiveButton p {
  width: 20%;
  margin: 0 auto;
  line-height: 2em;
  background: #696565;
}

#leftarrow p,
#rightarrow p {
  position: relative;
  top: 50%;
  margin-top: -0.5em;
}

figure {
  position: absolute;
  -webkit-box-shadow: 10px 0px 5px rgb(50, 50, 50),
    -10px 0px 5px rgb(50, 50, 50);
  -moz-box-shadow: 10px 0px 5px rgb(50, 50, 50), -10px 0px 5px rgb(50, 50, 50);
  box-shadow: 10px 0px 5px rgb(50, 50, 50), -10px 0px 5px rgb(50, 50, 50);
}

#fig2 {
  z-index: 10;
  left: 13%;
  top: 34px;
}

#fig3 {
  z-index: 20;
  left: 50%;
  margin-left: -240px;
  top: 0;
}

#fig4 {
  z-index: 10;
  right: 13%;
  top: 34px;
}

/* footer */

footer {
  width: 100%;
  font-size: 15px;
  padding: 10px;
  clear: both;
  background: black;
  color: rgb(255, 255, 255);
}

footer h5 {
  text-align: center;
}