.nav-container {
    position: fixed; 
    top: 0px; 
    right: 10%;
    width: 200px;

    margin-right: 8%;
}
.menu-items li {
  margin-right: 10px;    
}

.menu-items li:last-child {
  margin-right: 7;
}

.channel-name{    
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 20px;
}
.channel-space{
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.iframe-container{
    align-items: center;
}
.iframe-container iframe{
    width: 80%;
    height: 400px;    
} 
p{
  text-align: justify;
  margin-right: 20%;
}
.informacion{
  color: white;
}
.channel-name{
  color: white;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}
footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
footer p{
  text-align: center;
  font-size: medium;
  width: 100%;
}


@media screen and (max-width: 768px) {
    .menu-items {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      background-color: #333;
      padding: 20px;
    }
  
    .menu-items li {
      margin: 10px 0;
    }
  
    .toggle-menu {
      display: block;
    }
    .toggle-menu{
        position: fixed;
        right: 10%;
        
    } 
  }