body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

@supports (env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #000000;
  }
}