:root {
  --color-signal: #3a2259;
  --content-width: 720px;
  --color-title: #ee3560;
  --color-black: #040404;
  --color-white: white;
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Klima;
  src: url('klima/klima-regular-web.woff2');
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('klima/klima-bold-web.woff2');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('klima/klima-regular-italic-web.woff2');
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('klima/klima-bold-italic-web.woff2');
  font-style: italic;
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: Folsom;
  src: url('folsom-black-web.woff2');
  font-weight: black;
  font-display: swap;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Klima;
  min-height: 100vh;
}

h1 {
  font-size: 3rem;
}

h1 a {
  text-decoration: none;
  color: var(--color-title);
}

h2 {
  font-size: 2.5rem;
}

h2 a {
  text-decoration: none;
  color: var(--color-black);
}

p {

  line-height: 1.8;
}

li {
  line-height: 1.5;
}

main {
  padding-top: 220px;
  padding-bottom: 30px;
  background-color: var(--color-signal);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 1 auto;

}

main>* {
  max-width: var(--content-width);
  padding-left: 4px;
  padding-right: 4px;
}


header {
  width: 100%;
  background-color: var(--color-signal);
  color: var(--color-title);
  text-transform: uppercase;
  font-family: Folsom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -206px;
  overflow: visible;
  overflow-wrap: break-word;
  hyphens: auto;
}

header section {
  max-width: var(--content-width);
  z-index: 100;
  background-color: var(--color-signal);
  padding-right: 5px;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
}

header section img {
  z-index: -1;
  margin-top: -15%;
  margin-bottom: -16%;
  max-width: 75%;
}


footer {
  background-color: var(--color-black);
  width: 100%;
  color: var(--color-white);
  padding-top: 8rem;
  padding-bottom: 5rem;
}

footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

}

footer a {
  color: var(--color-white);
}

.share-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

button {
  background-color: var(--color-title);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.5) 1px 3px 1px;
  cursor: pointer;
  transition: all linear 100ms;
}

button:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 3px 1px;
}

.lang-switch {
  align-self: flex-end;
}

.buttons {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

a.btn {
  background: var(--color-title);
  padding: 13px 8px;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 2px;
  transition: all 200ms;
  margin: 5px 3px;
  font-weight: bold;
}

a.btn:hover {
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 0px;
}
