body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100%;
}

.banner {
    width: 50%;
    height: 100%;
    background-color: #333; /* Cor do banner */
    position: relative; /* Adicionado para o posicionamento correto da imagem */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Isso garante que a imagem do banner preencha completamente o elemento div */
}

.logo {
    position: absolute;
    height: 300px;
    width: 150px;
    top: 10px; /* Ajuste conforme necessário */
    left: 10px; /* Ajuste conforme necessário */
}

.logo img {
    width: 300px; /* Ajuste conforme necessário */
    height: auto;
}

.player {
    flex: 4;
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Cor de fundo do player */
}

.download-bt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}