/* Load local Colossalis font */
@font-face {
  font-family: 'Colossalis';
  src: url('colossalis.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Background: dress blue / red stripe / dress blue */
body {
  font-family: 'Colossalis', sans-serif;

  background: linear-gradient(
    to right,
    #002868 0%,
    #002868 42%,
    #b22234 42%,
    #b22234 58%,
    #002868 58%,
    #002868 100%
  );

  display: flex;
  flex-direction: column;
}

/* Title */
.title {
  text-align: center;
  font-size: 3rem;
  font-weight: normal;

  color: white;

  padding-top: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Center content */
.content {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* EGA image */
.ega {
  max-width: 300px;
  height: auto;

  display: block;

  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);

  padding: 15px;
  letter-spacing: 0.5px;
}
