html, body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}
.container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
	background-image: url('/bg-new-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: whitesmoke;
}
.container a {
	color: whitesmoke;
}
.container a:hover {
	color: lightgray;
}
.container img {
	border: 5px solid rgba(245,245,245, 0.5);
}
