html, body {
  background: #FFF;
}

body {
  background-image: url("/assets/italy/view-of-the-sea.jpg");
  background-size: cover;
  background-attachment: fixed;
}

.content {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
}

header {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin: 0 2rem;
  background-color: transparent;
}
header h2 {
  font-size: 3rem;
  color: #EEEEEE;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

main {
  background-color: #FFF;
  margin: 0 4rem;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
main > h1 {
  align-self: center;
  font-size: 3rem;
  color: #343434;
}
main > h2 {
  font-family: "Cookie", cursive;
  font-size: 5rem;
  color: #DEDEDE;
}
main > h3 {
  font-size: 2rem;
  color: #343434;
  margin-top: -7rem;
  margin-left: 2rem;
}
main blockquote {
  position: relative;
  display: block;
  margin: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  color: #343434;
  background-color: rgba(168, 102, 50, 0.1);
}
main blockquote::before {
  font-family: "Cookie", cursive;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  content: "tangent";
  color: rgba(168, 102, 50, 0.2);
  font-size: 5rem;
}
main blockquote p {
  padding: 2rem;
  min-height: 200px;
  font-size: 1.2rem;
}
main blockquote p img {
  display: block;
  padding-right: 1rem;
  width: 20vw;
  aspect-ratio: 16/9;
  object-fit: cover;
  float: left;
}
main blockquote p > strong {
  display: block;
  position: absolute;
  margin: -4rem;
  font-size: 2rem;
  color: #898989;
}
main ul {
  padding: 0;
  margin: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main ul li {
  width: 33%;
  list-style: none;
}
main ul li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

footer {
  color: #EEEEEE;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
