html, body {
    min-height: 100%;
    height: 100%;
    margin: 0;
    display: table;
    width: 100%;
}

body {
    background-color: #e2e2e2;
    color: #fff;
    font-family: "Lato", Sans-Serif, Serif;
}

.main {
    display: table-cell;
}

.general {
    display: table;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.cell {
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 100%;
}

.enter-content {
    margin: 25px auto;
    background-color: #064441;
    padding: 25px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.32);
    box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 32%) !important;
    border-radius: 5px;
}

.alumnos {
    margin: 25px auto;
    width: 250px;
}

.video {
    width: 700px;
    margin: 25px auto;
}

video {
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.32);
    box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 32%) !important;
    border-radius: 5px;
    padding: 2px;
    background-color: #fff;
}

.footer-cont {
    background-color: #51a7ad;
    width: 100%;
    color: #fff;
    font-size: 10px;
    bottom: 0;
}

.footer-table-cont {
    background-color: #181818;
}

.footer-table {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.disclaimer-cont {
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 800px) {
    .general {
        height: auto;
    }
    .enter-content {
        margin: 25px auto;
        background-color: #064441;
        padding: 25px;
        display: inline-block;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
    }
    .alumnos {
        margin: 25px auto;
        width: 250px;
    }
    .video {
        width: 100%;
        margin: 25px auto;
    }
    .footer-table {
        display: block;
    }
}