@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto';

    .bg_video{
        position: fixed; 
        right: 0; 
        bottom: 0;
        min-width: 100%; 
        min-height: 100%;
        width: auto; 
        height: auto; 
        z-index: -1000;
        background-size: cover; 
    }

    .container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;

        .error-404 {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
            padding: 60px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 10px;

            h1 {
                font-size: 50px;
                margin: 0;
            }

            .login {
                padding: 10px 60px;
                background-color: rgba(0,0,0,0.7);
                border-radius: 5px;
                color: #FFF;
                text-decoration: none;
                transition:all ease 0.3s;

                &:hover {
                    background-color: rgba(51, 45, 45, 0.7);
                }
            }
		}
    }
}