:root {
  --large: large;
  --small: small;
}

body {
  margin: 0;
  padding: 0;
  color: #003973;
  background-color: white;
  text-align: left;
}

* {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--large);
  font-weight: normal;
  line-height: 125%;
  vertical-align: baseline;
  box-sizing: border-box;
  font-kerning: normal !important;
  text-rendering: optimizeLegibility !important;
}

h1 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 3rem;
  line-height: 100%;
  margin: 1.25rem 1rem;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  line-height: 100%;
  font-size: 2rem;
  margin: 2.5rem 1rem 1.25rem;
}

p,
summary {
  margin: 1.25rem 1rem;
  hyphens: auto;
}

ol,
ul {
  margin: 1.25rem 0;
}

li {
  padding-left: 0.5rem;
}

a {
  color: #3399ff;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: small;
}

blockquote {
  margin-top: 2.5rem;
  font-style: italic;
  text-align: center;
  color: #003973;
}

body.en blockquote {
  font-style: normal;
}

blockquote,
blockquote+p {
  background: linear-gradient(to right, #0000ff 0%, #ff00ff 14%, #ff0000 28%, #ffff00 42%, #00ff00 56%, #00ffff 70%, #0000ff 84%);
  background-size: 200% auto;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease infinite;
}

@keyframes glow {
  to {
    background-position: 200% center;
  }
}

blockquote sup {
  font-style: normal;
}

sup::before {
  content: ' ';
}

article:first-of-type p:last-of-type {
  font-size: var(--small);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5rem;
}

header,
main,
footer {
  max-width: 768px;
  margin: 0 auto;
}

main article:last-of-type,
footer p:last-of-type {
  margin-bottom: 2.5rem;
}

nav ul {
  list-style: none !important;
  padding: 0;
  text-align: right;
}

nav li {
  display: inline-block;
  padding: 0;
}

nav li::before {
  content: ' — ';
}

nav li:first-of-type::before {
  content: none;
}

nav *,
summary {
  color: #003973;
  font-size: var(--small);
  text-transform: uppercase;
}

nav span * {
  color: #3399ff;
}

header h1,
header figure,
header p {
  text-align: center;
}

aside * {}

figure {
  margin: 1.25rem 1rem;
  text-align: center;
}

figure#portrait img {
  border-radius: 2.5rem 0 2.5rem 2.5rem;
  max-width: 61.8%;
}

figure#instagram img {
  max-width: 2.5rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto auto;
}

details {
  margin: 2.5rem 0 1.25rem;
}

details>summary {
  display: block;
  list-style: none;
  border: none;
  outline: none;
  cursor: pointer;
}

details[open]>summary {
  color: #3399ff;
}

summary::after {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

@media only screen and (max-width: 767px) {

  :root {
    --large: medium;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}