body
{
	display: block !important;
	position: static !important;
	height: auto !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important
}

a
{
    text-decoration: none !important;
}

#centre-screen
{
	background: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	grid-template-columns: auto;
	padding: 1rem;
	width: auto;
	max-width: 100%;
}

#logo
{
	background: none;
	position: relative;
	display: block;
	margin: auto;
	border: 3px solid #E6E6E6;
	border-radius: 100rem
}

#logo img
{
	z-index: -50;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: contain
}

@media (orientation: portrait)
{
	#centre-screen
    {
		grid-gap: 10vh;
	}
	#logo
    {
		height: 40vw !important;
		width: 40vw !important;
		margin: auto
	}
}

@media (orientation: landscape)
{
	#centre-screen
    {
		grid-gap: 10vw;
		grid-template-columns: auto auto
	}
	#buttons
    {
		width: 18em !important;
	}
	#logo
    {
		height: 40vh !important;
		width: 40vh !important
	}
}

@media (orientation: landscape) and (min-width: 800px)
{
	#buttons
    {
		width: 25em !important;
	}
}

#terms-of-use
{
    font-family: 'Roboto', sans-serif;
    font-size: 16px !important;
    color: grey !important;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

#terms-of-use:hover
{
    color: #333333 !important;
    cursor: pointer;
}