@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');


@media (min-width: 769px) {

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1950px; /* Ancho fijo del contenedor del video */
  height: 1463px; /* Alto fijo del contenedor del video */
}

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

.overlay {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.overlay.logo-overlay {
  width: 1920px; /* Ancho del logotipo */
  height: 1080px; /* Alto del logotipo */
  margin-bottom: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.overlay.logo-overlay img {
  width: 25%; /* Hacer que la imagen ocupe todo el ancho */
  height: auto; /* Ajustar altura automáticamente */
}

.overlay.button-overlay {
  position: absolute;
  margin-top: 70px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* Centrar contenido dentro del overlay */
  z-index: 2;
  display: flex;
  flex-direction: row;
  width: auto;
}

.overlay.button-overlay button {
  margin: 10px; /* Margen entre botones */
  padding: 8px 16px; /* Relleno de botones */
  font-size: 20px; /* Tamaño de la fuente */
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Agregamos una transición para el efecto hover */
  width: auto;
  max-width: 200px;
}

.overlay.button-overlay button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.overlay.button-overlay button a {
  text-decoration: none; /* Quitar subrayado */
  color: #fafbfb; /* Cambiar color del texto */
}

.overlay.button-overlay button a:hover {
  text-decoration: none; /* Asegurar que no haya subrayado en el hover */
}
	
	footer {
	height: 100px;
	color: black;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 15px;
	display: flex;
	justify-content: center;
	padding: 0;
	z-index: 2;
}

footer .redes-sociales {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 200px 0;
}

footer .logo-vimeo img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}

footer .logo-instagram img {
	width: 22px;
	height: auto;
	margin: 0 10px;
}

footer .logo-linkedin img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}
}

/* Estilos para Dispositivos Móviles */
@media (max-width: 768px) {
	
.video-container {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1950px; /* Ancho fijo del contenedor del video */
    height: 100vh; /* Ajustar al alto de la ventana */
	}
	
.video-container video {
	width: 100%;
    height: 100%;
  }

.overlay {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.overlay.logo-overlay {
  width: 1920px; /* Ancho del logotipo */
  height: 1080px; /* Alto del logotipo */
  margin-bottom: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.overlay.logo-overlay img {
  width: 25%; /* Hacer que la imagen ocupe todo el ancho */
  height: auto; /* Ajustar altura automáticamente */
}

.overlay.button-overlay {
  position: absolute;
  margin-top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* Centrar contenido dentro del overlay */
  z-index: 2;
  display: flex;
  flex-direction: row;
  width: auto;
}

.overlay.button-overlay button {
  margin: 5px; /* Margen entre botones */
  padding: 6px 12px; /* Relleno de botones */
  font-size: 18px; /* Tamaño de la fuente */
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Agregamos una transición para el efecto hover */
  width: auto;
  max-width: 200px;
}
	
  .overlay.logo-overlay {
    width: 340%;
	margin: 0 auto;
    margin-top: 0px;
  }
  .overlay.button-overlay {
    flex-direction: row;
  }

  .overlay.button-overlay button {
	margin: 5px;
    display: block;

  }
  .overlay.button-overlay .about-me-button {
    min-width: 120px;
  }
	
.overlay.button-overlay button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.overlay.button-overlay button a {
  text-decoration: none; /* Quitar subrayado */
  color: #fafbfb; /* Cambiar color del texto */
}

.overlay.button-overlay button a:hover {
  text-decoration: none; /* Asegurar que no haya subrayado en el hover */
}
	
	footer .redes-sociales {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 -100px 0;
}
	footer {
	height: 100px;
	color: black;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 15px;
	display: flex;
	justify-content: center;
	padding: 0;
	z-index: 2;
}

footer .redes-sociales {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 30px 0;
}

footer .logo-vimeo img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}

footer .logo-instagram img {
	width: 22px;
	height: auto;
	margin: 0 10px;
}

footer .logo-linkedin img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
