.dark-mode {
        background-color: Gray;
      }

section.contenedor {
    margin:auto;
    padding: 10px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header section.logo a {
    font-family: 'Black Ops One', cursive;
}


header nav {
    display: flex;
}

header a, article div {
    display: inline-block;
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    padding: 10px;
}

header nav a {
    border: 2px solid black;
    background-color: yellow;
    color: black;
    margin: 1px;
}

header nav a:hover {
    background-color :gold;
    text-decoration: none;
    color: black;
}

footer {
    background-color: yellow;
    margin-top: 3%;
}

footer div, footer p {
    padding: 1%;
}

footer p {
    text-align: right;
}

p {
    margin-left: 1%;
    margin-right: 1%;
}

article {
	box-sizing: border-box;
	float: left;
	width: 40%;
	padding: 10px;
	display: flex;
    object-fit: cover;
	justify-content: center;
	}

article.chat {
	width: 20%;
	}

#idStream, #idComentarios {
	width: 100%;
	height: 378px;
}

#chat_embed {
	height: 700px;
	width: 100%;
}

p.limpia {
	clear: both;
	}

.show{
	display: block;
	}

.YT.selector {
	order:0;
	}

.YT.viewer {
	order:1;
}

.inpt {
	display:none;
	pointer-events:all;
	}

.dropbtn {
	border: 2px solid black;
    background-color: yellow;
    color: black;
    margin: 1px;
	cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
  text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: DarkGray;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	background-color: gold;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: gold;
    text-decoration: none;
    color: black;
}


@media	screen	and	(max-width:	640px)	{
    header {
        flex-direction: column;
        align-items: stretch;
    }

    header nav a{
        flex: 25%;
        text-align: center;
    }
	
	article {
		width: 100%;
	}
	
	article.chat {
		width: 100%;
	}

    footer p {
        text-align: center;
    }
}