/* Setup */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

html,
body {
  font-family: "Lora", serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f56e6e;
  color: #fff7f7;
}
p {
  line-height: 1.5;
  width: 90vw;
  max-width: 800px;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0;
}
a {
  text-decoration: underline;
  cursor: pointer;
  line-height: 1.5;
  color: #fff7f7;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
h1 {
  font-size: 3rem;
  text-align: center;
}
.section{
  width: 100%;
  min-height: 100vh;
  padding: 50px 0 50px 0;
  box-sizing: border-box;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.largeimage {
  width: 90vw;
  height: 50.6249999955vw;
  max-width: 800px;
  max-height: 450px;
}
span[quote] {
  font-style: italic;
}
.footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  color: #fff7f7;
  padding: 20px 0;
}
.footer a {
  text-decoration:none;
  font-size:1rem;
}
.footer a:hover {
  text-decoration: underline;
}
.footer img {
  transition: .2s;
}
.footer img:hover {
  transform: translate(-3px, -3px);
}
/* Mobile */
@media screen and (max-width: 800px) {
  p {
    font-size: 1.3rem;
  }
  h1 {
    font-size: 2.5rem;
    width: 90%;
  }
{
