:root {
    --font-family: 'Lato', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-family);
    
}

/* Main */

.main-content {
    /* flex: 1; */
    overflow-y: auto;
    max-height: calc(100vh - 150px);
    padding-bottom: 5px;
}

main.main-content .container {
    max-width: 90%;
}

main.main-content .container h2, h6, .card a, p a, p a:hover {
    color: #333333;
}

/* Footer */

.footer {
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-items {
    display: flex;
    gap: 5px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer p {
    margin: 5px 0 5px 0;
}
.fade-out {
    animation: fadeOut 5s ease forwards;
    /* 5 seconds duration */
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}
#user-video{
    width: 100%;
    height:100%;
}