@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
.hide {
  display: none !important;
}

section.no-js {
  padding: 0.5rem;
  padding: var(--padding-default, 0.5rem);
}

:root {
  --top40red: #ed1c24;
  --darkgrey: #4a4a4a;
  --lightgrey: #e5e5e5;
  --padding-large: 1rem;
  --padding-default: 0.5rem;
  --padding-small: 0.2rem;
  --font-color: black;
  --font-size: 14px;
  --button-color: var(--top40red, $top40red) ;
}

.title {
  font-weight: bolder;
}

html {
  overflow: hidden;
  min-height: 160px;
  max-height: 600px;
  min-width: 168.75px;
  max-width: 600px;
}

body {
  display: flex;
  flex-flow: column;
  justify-content: stretch;
  box-sizing: border-box;
  min-height: 160px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  background-color: white;
  color: black;
  color: var(--font-color, black);
}
body * {
  box-sizing: inherit;
}
body > section,
body > main {
  flex: 2 1 auto;
}
body > section {
  height: 100%;
}

body > header {
  flex: 1 1 auto;
  display: flex;
  width: 100%;
  align-items: flex-end;
  max-height: 3em;
  padding: 0.5rem;
  padding: var(--padding-default, 0.5rem);
}
body > header img {
  order: 1;
  flex: 1 1 0;
  max-height: 100%;
  margin-right: 1em;
}
body > header h1 {
  order: 2;
  flex: 2 1 auto;
  margin: 0;
  font-size: inherit;
}
@media (aspect-ratio: 9/16) {
  body > header {
    flex-flow: column;
    align-items: center;
  }
}

aside {
  flex: 1 1 auto;
  max-height: 3em;
  padding: 0.5rem;
  padding: var(--padding-default, 0.5rem);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2em;
  width: 100%;
  border-radius: 0.25rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #ed1c24;
  background-color: var(--button-color);
  border: none;
}
.button:is(button) {
  appearance: none;
}