@charset "utf-8";

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
    color: white
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)),
	url("https://www.gamesmc.de/core/images/gamesmcde-background-1920x1001.png") no-repeat center center;
    background-size: cover;
	text-align: center;
}

/*IDs*/
#header {margin-bottom:1%; margin-right:10%; margin-top:2%; margin-left:10%; text-align:center; width:80%; position:relative; border-bottom: 1px solid black;}

#main {margin-bottom:0%; margin-right:10%; margin-top:0%; margin-left:10%; width:80%; position:relative;}

#footer {margin-bottom:2%; margin-right:10%; margin-top:1%; margin-left:10%; text-align:center; width:80%; position:fixed; bottom: 10px}

/*Header*/
h1 { font-size:26px; margin-bottom:18px; }

/*Logo and Effect*/
.logo {
	width: 180px;
	transition-duration: 0.5s;
	margin: 0 40px;
}

.logo:hover {
	transform: scale(1.04);
}

/*Link colors*/
a:link {
  color: aquamarine; 
  background-color: transparent; 
  text-decoration: none;
}

a:visited {
  color: aquamarine;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: aqua;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
