body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.video-container {
  display: flex;
  height: 100vh;
}

.text-side {
  flex: 1;
  padding: 40px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-content {
  font-size: 1.5em;
  max-width: 400px;
}

.video-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

video {
  width: 58%;
  height: 100%;
  background: black;
  display: block;
  margin:0 auto;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.video-controls button {
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.video-controls input[type="range"] {
  flex: 1;
  accent-color: #00aaff;
}





  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
#bienvenidos{
    text-align: center;
    color: #333;
    background-color:#da291c ;
}
.info {
    margin-top: 20px;
}
.info p {
    font-size: 18px;
    color: #333;
}
.info p span {
    font-weight: bold;
}
.img {
    border: solid 2px;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
