/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #000;
  font-family: sans-serif;
}

/* Centering the logo */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}