:root {
  --color-blue-ffk: 20, 35, 160;   /* #1423A0 */
  --color-red-ffk: 220, 45, 90;    /* #DC2D5A */
  --color-black-ffk: 0, 0, 0;      /* #000000 */
  --color-gray-ffk: 140, 140, 140; /* #8C8C8C */
}

::backdrop {
  background-color: rgba(var(--color-blue-ffk), .5);
}

body {
  font-family: system-ui, Arial;
  margin: 0;
  background-color: white;
}

/******************************************************* header *******************************************************/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding: 1rem;
}

header img {
  height: 80px;
}

header h1 {
  margin-block: 0;
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/******************************************************** main ********************************************************/
main {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

main dialog {
  background-color: white;
  border-radius: .5rem;
}

main dialog button {
  background-color: rgb(var(--color-red-ffk));
  color: white;
  border-radius: .25rem;
  cursor: pointer;
}

main section h2 {
  margin-top: 1.5rem;
  margin-bottom: 0px;
  padding-left: .5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

main section h2 .rouge {
  color: rgb(var(--color-red-ffk));
}

main section p {
  margin-top: .75rem;
  margin-bottom: 0px;
  padding-inline: 1rem;
}

main section p a {
  font-weight: 500;
  color: rgb(var(--color-blue-ffk));
  text-decoration: none;
}

main section p a:hover {
  text-decoration: underline;
}

main section p a svg {
  height: 1rem;
}

main section iframe {
  width: 100%;
}

main table {
  margin-top: .75rem;
  margin-bottom: 0px;
  width: 100%;
  border-style: none;
  border-collapse: collapse;
  border-radius: .5rem;
  box-shadow: 0 4px 6px -1px;
  overflow: hidden;
}

main table thead th {
  padding: .5rem;
  background-color: rgba(var(--color-gray-ffk), .2);
  font-weight: bold;
  text-align: left;
}

main table tbody tr:nth-child(odd) {
  background-color: white;
}

main table tbody tr:nth-child(even) {
  background-color: rgba(var(--color-gray-ffk), .1);
}

main table tbody tr td {
  padding: .5rem;
}

main section #social {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 2rem;
  margin-inline: 1rem;
  margin-block: 1rem;
}

main section #social img {
  max-height: 64px;
}

/******************************************************* footer *******************************************************/
footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 1rem;
  background-color: rgba(var(--color-gray-ffk), .2);
}

footer #ffk {
  display: flex;
  flex-direction: row;
  align-items: center;
}

footer #ffk img {
  max-height: 32px;
}

footer button#showMentions {
  padding: .5rem;
  border: 0;
  color: rgb(var(--color-blue-ffk));
  border-radius: .5rem;
  cursor: pointer;
}