@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');

:root {
  --brand-blue: #9fc9ff;
  --page-padding: 1rem;
  --max-width: 820px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Pixelify Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--page-padding);
  gap: 1rem;
  background-color: #272727;
}

body > * {
  width: 100%;
  max-width: var(--max-width);
}

button, input, textarea, select, optgroup, option {
  font-family: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo {
  width: clamp(270px, 28vw, 510px);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
    .announcmentBanner {
  border: 5px outset red;
  background-color: rgb(230, 173, 173);    
  text-align: center;
}