body {
    font-family: Arial, sans-serif;
    background-image:url(fondo.jpg) ;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


h1 {
    color: #2c3e50;
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 15px;
}


div:first-of-type img {
    display: block;
    margin: 0 auto;
    max-width: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}


video:hover {
    transform: scale(1.02); 
    transition: transform 0.3s ease-in-out;
}


@media (max-width: 768px) {
    div {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    video {
        max-width: 100%;
    }
}
.shadow-effect {
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #00BFFF; 
    color: #FFFFFF; 
    font-weight: bold;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
  }
  
  .shadow-effect:hover {
    background-color: #009ACD; 
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
