/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make the body fill the entire viewport with a white background */
body, html {
  height: 100%;
  background-color: white;
}

/* Center the content using flexbox */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Style the logo */
.logo {
  max-width: 100%;
  height: auto;
}
