#infoBox
{
	text-align: center;
	width:17em;
	margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(245,245,245,0.92);
    padding-left: 9em;
    padding-right: 9em;
    padding-top: 2em;
    padding-bottom: 2em;
    font-family: 'Noto Sans', sans-serif;
    color:rgb(25,17,80);
    font-size: 1em;
}

a
{
	color:rgb(33,17,80);
	text-decoration: none;
}

a:hover
{
	color:rgb(70,43,150);
	text-decoration: underline;
}

.bg {
  /* The image used */
  background-image: url("img/background-oranges.jpg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body, html {
  height: 100%;
  margin: 0;
}

.logo
{
	width:17em;
}

.bottomText
{
	font-size:0.9em;
	font-weight:700;
}

@media only screen and (max-width: 600px) {
  #infoBox
  {
  	padding:0;
  	width:100%;
  	margin-top:0;
  	height:100%;
  }
  .logo
  {
  	padding-top:30%;
  }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
  #infoBox
  {
  	padding:0;
  	width:100%;
  	margin-top:0;
  	height:initial;
  	background-color: rgba(245,245,245,0.85);
  }
  .logo
  {
  	padding-top:30%;
  }
  .bg
  {
  	display: none;
  }
}