:root {
  --bg-color: #a0aecd;
  --fg-color: #000000;
}

html {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", "Arial", "sans-serif";
  font-size: 12pt;
}

body {
  background-color: var(--bg-color);
  color: var(--fg-color);
  margin: 0px;
}

div.center {
  text-align: center;
  padding-top: 40px;
}

header {
  padding: 20px 40px;
  height: 60px;
}

header > div.logo {
  width: 180px;
}

header > div > span.top-part {
  font-size: 18pt;
  font-weight: bolder;
  display: block;
  text-align: center;
}

header > div > span.bottom-part {
  display: block;
  text-align: right;
  padding-right: 10px;
  font-style: italic;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  display: flex;
  flex-direction: row;
  font-size: 16pt;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

section > div {
  max-width: 450px;
  padding: 40px;
}

section > div.app-privacy {
  max-width: 900px;
  padding: 40px;
  font-size: 14pt;
}

section > div > div.app-title {
  margin-top: 40px;
}

section > div > div.app-text {
  padding-bottom: 20px;
}

section > div > div.app-title > h1 {
  font-weight: bolder;
  font-size: 32pt;
  padding: 0px 10px;
}

img.pig {
  transform: translate(0%, 30%);
}

button {
  background-color: var(--bg-color);
  border: 4px solid var(--fg-color);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 18pt;
}
