@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

html {
    height: 100vh;
}



.container_video {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.container_video .bg_video {
    background-color: #E0FFFF;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container_video .titulo_video {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -55%;
    margin-left: -10%;
    position: relative;
    width: 30%;
    height: 30%;
    text-align: center;
    gap: 10px;
}

/* .container_video .titulo_video h1 {
    font-size: 55px;
    color: var(--color-light-50);
    text-shadow: 0 0 0.3em #00000095;
    font-weight: bold;
    margin-top: 11%;
} */

.container_video .titulo_video h2 {
    color: rgb(18, 64, 64);
    font-weight: 400;
    /* text-shadow: 0 0 0.3em #00000095; */
    margin-top: 20%;
    margin-left: -95%;
    font-size: 29px;
    border-radius: 2px;
}

/* .container_video .titulo_video .bg_titulo {
    background-color: #868640;
    width: 120%;
    height: 18%;
    margin-left: -10%;
    margin-bottom: -18%;
    position: absolute;
    z-index: -1;
    margin-top: -35%;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.336);
} */

.container_video .card_video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    width: 50%;
    height: 50%;
    margin-left: -55%;
    margin-top: 30%;
}

.container_video .card_video video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 2px solid #646464;
    margin: 10px;
}

