@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --font-familly: "Titillium Web", sans-serif;
}

body {
    font-weight: 400;
    font-style: normal;
    font-family: var(--font-familly);
    background: #000;
}

body::before
{
	content: "";
	height: 100vh;
    width: 100vw;
	left: 0;
	top: 0;
	transition: unset;	
	z-index: -1;

    background: url(/_customers/images/ui/Gilmore/Gilmore.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    opacity: .2;
}

input {
    background: #fff;
    color: #000;
    border: 1px solid #333;
}