/**
 * ------------------------------------------------------ *
 * Base
 * ------------------------------------------------------ *
**/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  min-width: 300px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.25;
  background: linear-gradient(to bottom, #472C69, #000000);
  overflow-x: hidden;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  display: block;
}


/**
 * ------------------------------------------------------ *
 * Styles (Typography)
 * ------------------------------------------------------ *
**/
h1 {
  font-size: 3em;
  line-height: 1.125;
  margin: 1.25em 0 0;
  color: white;
  font-weight: bold;
}

h2,
h3 {
  font-size: 2.5em;
  margin: 1.25em 0 0;
  font-weight: bold;
  color: white;
  text-align: center;
}

h4 {
  font-size: 1em;
  line-height: 1.5;
  margin: 2em 0 0.5em;
  color: white;
  text-align: center;
  font-weight: bold;
}

p {
  margin-top: 0;
  line-height: 1.5;
  color: white;
}

/**
 * ------------------------------------------------------ *
 * Content (Layout)
 * ------------------------------------------------------ *
**/

.header {
  padding: 2em 0 1.5em;
  text-align: center;
  flex-shrink: 0;
}

#body {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#body .wa {
  width: 25%;
}