/*
    Hoja de Estilos Principal
    Proyecto: Sistema de Encuestas AutoStock
*/

@font-face {
  font-family: 'bebas';
  src: url('../fonts/Bebas.otf');
}

@font-face {
  font-family: 'montserrat';
  src: url('../fonts/Montserrat.ttf');
}

body{
	background-image: url("../img/bkg.jpg");
    background-size: cover;
}

#contenedor{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

#loginForm{
    background-color: white;
}

#dash{
	background-color: white;
	height: 100vh;
}

.fBebas{
    font-family: 'bebas'
}

.fMontse{
    font-family: 'montserrat';
}