/* Reset margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0878b8; /* Brand blue */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  max-width: 300px;
  width: 80%;
  height: auto;
}
