@font-face {
  font-family: 'Averia';
  font-weight: 400;
  font-display: block;
  src: url('theme/averiaseriflibre.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-weight: 500;
  font-display: block;
  src: url('theme/Oswald.woff2') format('woff2');
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  text-shadow: 1px 1px 1px #000;
  color: #fff;
}
a {
  text-shadow: 1px 1px 1px #000;
  color: #fff;
}
h1 {
  font-family: 'Oswald';
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25;
}
.container {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.container:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/img/noise.svg');
  backdrop-filter: blur(3px);
  background-color: rgba(130, 130, 130, 0.5);
}
.logo {
  width: 45%;
  align-self: start;
  margin-bottom: 1em;
}
.layout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.more {
  display: block;
  margin-top: 1.5em;
  text-decoration: none;
  text-align: center;
}
.more:before {
  content: '';
  display: block;
  margin: 1.5em auto;
  height: 1px;
  background: #fff;
  width: 40%;
}
.caption-overlay {
  display: block;
  margin: 3em 0 4em 0;
  color: var(--overlay-color, #fd7e14);
  text-align: center;
  font-family: 'Averia', sans-serif;
  font-size: 1.625em;
  line-height: 1;
  width: 15ch;
  height: 1em;
  text-shadow: none;
  background-color: #eed1a7;
  border-radius: 6px;
  border: 3px solid var(--overlay-color, #fd7e14);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.18);
  padding: 0.4em 0.5ch;
  transform: rotate(-10deg);
}
.caption-overlay.color-red {
  --overlay-color: #dc3545;
}

.caption-overlay.color-yellow {
  --overlay-color: #fd7e14;
}

.caption-overlay.color-green {
  --overlay-color: #28a745;
}

.caption-overlay.color-blue {
  --overlay-color: #4267b2;
}