body {
  background-color: black;
  text-align: center;
  font-size: larger;
  color: white;
  margin: 0;
  padding: 0;
}

button, a button {
  background-color: #34495e;
  color: white;
  height: 30px;
  border-radius: 10px;
  border: 2px solid gray;
  margin-bottom: 20px;
  font-size: 1rem;
  padding: 10px 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  display: inline-block;
}


button:hover, a button:hover {
  background-color: #cc0000;
  transform: scale(1.1);
}

p {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 5px;
  margin-top: -10px;
  font-family: 'Roboto Condensed', sans-serif;
}

h1 {
  font-family: "Nosifer", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: red;
  margin-bottom: 10px;
  font-size: 2em;
}


img.capa {
  border-radius: 5px;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  max-width: 100%;
}

.video {
  border-radius: 5px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 30px;
}

.footer {
  background-color: red;
  color: white;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.navbar {
  background-color: #1e1e1e;
  padding: 10px;
  border-bottom: 3px solid #b10c0c;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 70px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

.nav-links li a:hover {
  background-color: #e50000;
  color: #121212;
  border-radius: 5px;
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 5px 0;
  }

  h1 {
    font-size: 1.8em;
  }

  button, a button {
    width: 100%;
    max-width: 250px;
  }

  .video-container .video {
    max-width: 100%;
    height: auto;
  }
}

h6 {
    text-align: center;
}

h6 a {
  color: black;
  text-decoration: none;
}
