/*selector {property*/		/* !important wins above all*/		/*The CASCADE---*/

html {
	font-family: /*Papyrus,*/ Helvetica, sans-serif; 
	line-height: 1.5;
	color: white; 
	font-size: 18px;
}

	body {
		background-image: url('images/undartale-background.png');
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;

		font-weight: bold;
		max-width: 1000px;

		align-content: center;
		margin: 0 auto;
	}

		.container {
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 1fr 1fr;
			column-gap: 1rem;
			row-gap: 1rem;
		}

		.child-1	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 30% 70%;
			column-gap: 1rem;
			row-gap: 1rem;

			background-image: url(images/undertale-characters.png);
			background-position: top;
			background-size: cover;
			height: 200px;
			border: 5px solid white;
		}

		.child-2	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 30% 70%;
			column-gap: 1rem;
			row-gap: 1rem;
		}

		.child-3	{
			display: grid;
			/*max-width: 800px;*/
			margin: 0 auto;
			grid-template-columns: 20% 80%;
			column-gap: 1rem;
			row-gap: 1rem;
			padding: 1rem;
		}

		.child-4	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 30% 70%;
			column-gap: 1rem;
			row-gap: 1rem;

			background-image: url(images/deltarune-three-heroes.webp);
			background-position: top;
			background-size: cover;
			height: 220px;
			border: 5px solid white;
		}

		.child-5	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 55% 45%;
			column-gap: 1rem;
			row-gap: 1rem;
		}

		.child-6	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 20% 80%;
			column-gap: 1rem;
			row-gap: 1rem;
		}

		.child-7	{
			display: grid;
			max-width: 1000px;
			margin: 0 auto;
			grid-template-columns: 1fr 1fr;
			column-gap: 1rem;
			row-gap: 1rem;
		}

.title	{
	font-size: 40px;
	text-align: center;
}

	h1 {
		text-align: center;
		text-shadow: 0px 3px 10px skyblue;
	}

	h2	{
		text-align: center;
		text-shadow: 2px 2px 5px blue;
	}

	p 	{
		width: 95%;
		font-size: 
	}

iframe	{
	border: 7px
}


			/* mouse over link */
			a:hover {
 			 color: yellow;
 			 font-size: 105%;
 			 transform: scale(1.5);
  			 transition: border-color 0s, font-size 0.3s ease-out;
 			}

			a {
				text-decoration: none;
				color: inherit;
				transition: border-color 0s, font-size 0.3s ease-in;
			}

			a:visited {
				color: ;
			}

	.gif:hover	{
		width: 45px;
		transform: scale(1.5);
		transition: border-color 0s, width 0.3s ease-out;
	}

						/* width messurments= 0 , 500px , 50% , 1em , 1rem */
	.intro	{
		border: 0px solid pink;
		width: 90%;
	}

.picture 	{				/*How to center the image! Middle of the screen boi*/
	display: block;
	margin: 0 auto;
	width: ;
	float: ;
}

@media (min-width: 600px;)	{
	article p {
		column-count: 2;
		font-size: 20px;
	}

	.container	{
		column-count: 2;
	}
}

@media (min-width: 900px)	{
	article p {
		column-count: 3;
		font-size: 22px;
	}
}