html {
  background-color:black;
  

  /* Inaktivera selection */
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

.main {
  display: flex;
  align-items: center;

  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.startstyle {
  position:relative;
  top: 50%;
  transform: translate(0, -50%);
  
  color: #39ff14;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.imgc {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  width: 80%;
}

a {
  text-decoration: none;
  color: #39ff14;
}
a:hover {
  color: #1cb000;
}