body {
	margin-top: 40px;
	margin-bottom: 60px;
	background-color:#81d1ff;	
	color:#000000;
}

/* Site name next to the logo */
#name{
	position: relative;
	top: -20px;
	margin:20px;
	font-size: 50px;
	font-family: Times New Roman;
}

#name, #name:link, #name:visited {
	color: black; 
	text-decoration: none;
}

/* Side images */
.left-image{
    left: 0;
	background-position: center left;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	background-image: url(../left.jpg);
}

.right-image{
    right: 0;
	background-position: center right;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	background-image: url(../right.jpg);
}

/* Methods to disable the right and left image when the screen is too small */
@media screen and (max-width: 1800px) {
	div.right-image{
		display: none;
	}
}
  
@media screen and (max-width: 1890px) {
	div.left-image{
		display: none;
	}
}

/* Top menu things size */
#TEXT{
	font-size:30px;
}

.links{
	font: Georgia;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.links { 
		font-size: 30px;
		margin-top: 25px;	
	}
}

.hovlink:hover {
	background-color: rgba(255, 255, 255, 0.5);
	background-size: 100%;
	border-radius: 25%;
}

/* keeps the menu things white. from whenever you accesed them from */
#About, #About:link, #About:visited {
	color: white; 
}

#About{
	margin: 10px;
}

#Extra, #Extra:link, #Extra:visited {
	color: white; 
}

#Extra{
	margin: 10px;
}

#Gallery, #Gallery:link, #Gallery:visited {
	color: white; 
}

#Gallery{
	margin: 10px;
}

#MusicPlayingGame, #MusicPlayingGame:link, #MusicPlayingGame:visited {
	color: white; 
}

#MusicPlayingGame{
	margin: 10px;
}

/* Text next to the picture */
.Aboutme {
	position:absolute;
	top:150px;
	font-size: 21px;
	margin-right: 50px;
	left: 40%;
}

@media screen and (max-width: 1000px) {
  .Aboutme { 
	position:absolute;
	left:10%;
	font-size: 18px;}
}

p{
	margin-top:30px;
}

/* Picture and border */
#AboutMePicture {
	position:absolute;
	top:180px;
	left:2%;
	border-radius: 50%;
	border: 3px solid #ff83bd;
}
/* Disable picture after visible dimension is less than 1000px */
@media screen and (max-width: 1000px) {
  	.AboutMePicture { 
		display: none;
	}
}

/* Bottom watermark text */
.CreatorText {
	color: rgb(255, 255, 255);
	/* Multiple shadowing to make it more visible to the bare eye */
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	user-select: none;
	position: fixed;
	bottom: 1%;
	right: 1%;
	z-index: 39;
}

/* Found this cool animation trick from here:
https://www.30secondsofcode.org/css/s/hover-underline-animation
kudos to them for the animation code.
*/
.hover-underline-animation {
	display: inline-block;
	position: relative;
	color: #f352ab;
}

.hover-underline-animation:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #f352ab;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}