body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: relative;
    max-width: calc(100vh * 9 / 19); /* Calcula a largura máxima com proporção 9:19 */
    max-height: 100vh; /* Limita a altura máxima à altura da tela */
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém a proporção e corta a imagem conforme necessário */
}
