/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Wrapper */
.uc-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header bar */
.uc-header {
  background-color: #0f4fa3; /* dark blue */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-header-text {
  color: #ffffff;
  letter-spacing: 0.4em;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Main section */
.uc-main {
  flex: 1;
  background-color: #0b8db8; /* teal */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.uc-logo {
  max-width: 600px;
  width: 80%;
  height: auto;
}
