* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Rethink Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000033;
  color: #000033;
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}

.outer.primary {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.report-link {
  color: #004c99;
  font-weight: inherit; /* keeps it consistent with surrounding text */
}

.report-link:hover {
  text-decoration: underline;
}

.card img {
  width: 200px;
  margin-bottom: 1.5rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

h3 {
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

h5 {
  font-weight: 400;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

a {
  color: rgb(100, 96, 96);
  text-decoration: none;
}

a.select {
  font-weight: 600;
}

.exit {
    margin-top: 1.5rem;
}

.exit a {
    color: #fa9720;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.exit a:hover,
a:hover {
  text-decoration: underline;
}

.button-primary {
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.08) 0.1rem 0.4rem 0.8rem;
    color: rgb(255, 255, 255);
    padding: 1.25rem 3.2rem;
    border-radius: 0.4rem;
    transition: 0.25s ease-in-out;
    border-width: 0.1rem;
    border-style: solid;
    border-color: rgb(188, 226, 253);
    border-image: initial;
    background: rgb(0, 76, 153);
}

.button-primary:hover {
  background: #000033;
  text-decoration: none;
}
