@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    background-size: cover;
    background-color: white;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
}

h1 {
    text-align: center;
    margin: 0;
    color: #001A49;
}
p{
    text-align: center;
    font-size: 25px;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.operation {
    background-color: #001A49;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    width: 90%;
    max-width: 600px;
    transition: transform 0.3s;
    color: white;
}

.operation:hover {
    transform: translateY(-5px);
}

h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.content {
    display: none;
    padding: 10px;
}

iframe {
    width: 100%;
    height: 315px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #000000;
    color: rgb(255, 255, 255);
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}
.capa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    mix-blend-mode: overlay;
}