body {
  /* Removes default padding */
	margin: 0;
	padding: 0;

  /* Default text style */
  background-color: black;
  color: white;
  font-family: Verdana;
  
  /* Pixel art background */
  background-image: url("https://eltiolavara9.neocities.org/bg.png");
  background-repeat: repeat;
  background-position: center top;
}

.transform {
  /* Background for main page */
  width: 100%;
  max-width:914px;
  height: auto;
  min-height: 100vh;
  background-color: black;
  
  position: relative;
}

/* Makes images fill the page by default, ususally overwritten */
.transform img {
  width: 100%; /*80%*/
}

.transform2 {
  width: 50%;
  max-width:400px;
  height: auto;
}

/* Makes images fill the page by default, ususally overwritten */
.transform2 img {
  width: 100%; /*80%*/
}

.transform3 {
  text-indent: 4em;
  text-align: left;
  width: 70%;
  max-width:900px;
  height: auto;
}

/* Makes images fill the page by default, ususally overwritten */
.transform3 img {
  width: 100%; /*80%*/
}


/* Code to place 2 images on the same line next to each other */
* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}


/* Footer */
#footer {
	background-color: black; /* could maybe use #1C1C1C from the background image, depends on if the icons stay or not */
	font-family: arial, serif;
	font-size: 12px;
	overflow: hidden;

	padding: 5px 0 0 0;
	line-height: 0px;

  width: 100%;
  max-width:914px;
  position: absolute;
  bottom: 0;
}

/* Footer Text */
#footer p { 
	color: #fff;
	font-family: arial, serif;
}

#footer a {
	color: #fff;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}

#footer .gototop {
	font-size: 20px;
	float: right;
	padding: 10px 10px 0 0;
}

#footer .copyrightandlinks {
	float: left;
	padding: 0 0 0 10px;
	text-align: left;
}