@import 'https://fonts.googleapis.com/css?family=Lato:400,700';

:root {
  --spidey-blue: hsl(215, 35%, 30%);
  --painting-white: #FAF9FF;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  color: var(--painting-white);
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  background-color: var(--spidey-blue);
  line-height: 1.5;
}

main {
  text-align: center;
  justify-items: center;
  align-items: center;
}

h1 {
  color: var(--painting-white);
  font-size: 5rem;
  margin: 10px;
}

strong {
  float: left;
}

ul {
  list-style-type: none;
  max-width: 550px;
  margin: 0 auto 50px auto;
}

a {
  color: var(--spidey-blue);
  margin-bottom: 20px;
}

section p {
  margin: 0 15px 15px;
}

#image {
  max-width: 500%;
  max-height: 800px;
  border-radius: 5px;
}

#img-div {
  background: var(--painting-grey);
  width: 80%;
  margin: 0 auto;
  border-radius: 8px;
  max-height: 1000px;
}

#img-caption {
  color: rgb(250, 248, 248);
  font-style: italic;
  padding: 14px 0 20px;
}

#tribute-info {
  margin: 30px 0 0;
}

.each-year {
  width: 100%;
  text-align: justify;
  margin: 0 auto 25px auto;
}

.each-year:first-child {
  margin-top: 25px;
}

.each-year:last-child {
  margin-bottom: 45px;
}

.footer {
  color: var(--spidey-blue);
  background: var(--painting-white);
  padding: 20px;
}