:root {
  --color-bg: #205781;
  --color-bg-secondary: #4f959d;
  --color-bg-main: #f6f8d5;
  --color-link: #4f959d;
  --color-secondary: #98d2c0;
  --color-secondary-accent: #4f959d;
  --color-text: #205781;
  --outer-border-radius: 0 25px 0 25px;
  --border: 2px solid rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav {
  font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.2rem;
}

h4,
h5,
h6 {
  font-size: 1rem;
}

header {
  background: var(--color-bg-secondary);
  border-radius: var(--outer-border-radius);
  border: var(--border);
  margin-top: 1rem;
  position: relative;
  color: var(--color-bg-main);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
header h1 {
  z-index: 2;
  position: relative;
}
header img.banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

main {
  padding: 3rem 0 2rem; /* mobile only */
}
main .content img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  border-radius: var(--outer-border-radius);
}

body > footer {
  background: var(--color-bg-secondary);
  color: var(--color-bg-main);
  border-radius: var(--outer-border-radius);
  border: var(--border);
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
}
body > footer a {
  color: var(--color-bg-main);
}
body > footer .socials {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
body > footer .socials li {
  padding: 0;
}
body > footer .socials li a img {
  width: 3rem;
  height: auto;
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%);
  transition: all 0.3s ease-in-out;
}
body > footer .socials li a:hover img {
  transform: scale(120%);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%) drop-shadow(0px 0px 3px #fff);
}

nav,
article {
  border-radius: var(--outer-border-radius);
  padding: 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(#f6f8d5, #f6f8d5) padding-box, linear-gradient(125deg, #94ddaa, transparent 20rem) border-box, linear-gradient(to bottom, white, transparent) border-box;
  border: 3px solid transparent;
}

nav {
  flex-wrap: wrap;
  font-size: 1.2rem;
}
nav ul,
nav ul li {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}
nav ul li ul {
  padding-left: 1rem;
  font-size: 1rem;
}
nav a.active {
  color: var(--color-secondary);
}

@media (min-width: 769px) {
  main {
    gap: 0 1rem;
    min-height: 30rem;
    padding: 1rem 0 0;
  }
  main .content {
    margin: 0 0 1rem;
    padding-bottom: 2rem;
  }
}
.contact-form {
  max-width: 350px;
  margin: 4rem auto 0;
  padding: 1rem;
  min-width: min-content;
  background: var(--color-bg-secondary);
  color: var(--color-bg-main);
}
.contact-form button {
  background: var(--color-bg);
  color: var(--color-bg-main);
}
.contact-form input[type=text],
.contact-form input[type=password],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
}

.content-comparison {
  display: flex;
  gap: 1rem;
}
.content-comparison > div {
  width: 50%;
}
.content-comparison textarea {
  width: 100%;
}
.content-comparison iframe {
  box-sizing: content-box;
  display: block;
  width: 100%;
  background: white;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  height: 900px;
}