html {
    min-height: 100%;
    background-image: url(../images/background.svg);
    //background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgb(20, 20, 20);
}

body {
    color: white;
}

a { color: #ffffff; text-decoration: none; }
a:hover { color: #ffffff; text-decoration: none; }

.container {
    display: grid;
    justify-content: center;
    align-items: center;
}
.container img {
    position: absolute;
    top: 30%;
    left: 50%;
	max-width: 80%;
    transform: translate(-50%, -30%);
    }

.button {
	background-color: #0975FF;
	border: none;
	border-radius: 8px;
	color: white;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 10px 10px;
	cursor: pointer;
	width: 170px;
	line-height: 1.2;
}
.links {
	position: absolute;
	align-items: center;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -30%);
    color: white;
    font-size:1.5vw;
    font-family: sans-serif
}
.footer {
    display: grid;
    justify-content: center;
    align-items: center;
}
.footer p {
    text-align: center;
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, -1%);
    color: white;
    font-size:0.6vw;
    font-family: sans-serif
}

@media only screen and (max-height: 600px) {
  /*
  html {
    background-color: lightblue;
  }
  */
  .container img {
    top: 15%;
	left: 50%;
  }
  .links {
    top: 50%;
    left: 50%;
  }
  .footer p {
	font-size:0.7vw;
  }
}

@media only screen and (max-width: 1000px) {
  /*
  html {
    background-color: blue;
  }
  */
  .container img {
    top: 7%;
	left: 50%;
  }
  .button {
	display:block;
	padding: 15px;
	margin: 7px 7px;
  }
}