@charset "utf-8";
/* CSS Document */

.bigGreen {
	font-size: 36px;
	font-family: "Impact", Times New Roman, Arial;
	color: #9934f7; 
}

.smallBlue {
	font-size: 60px;
	color: #0da9d9
	
}

.cutePink{
	font-size: 30px; 
	font-family: New Rocker, Impact, Arial; 
	Color: #f086ee
	
	
}

.limeowo {
	font-size: 42px;
	Font-family: "Impact", Times New Roman;
	color: #34f754
	
	
}

.tinyBlue {
	font-size: 25px; 
	font-family; "Impact", Times New Roman;
	color: #0da9d9
	
}

.boxStatic {
	height: 200px; 
	width: 200px;
	background-color: blue; 
	position: static;
}

.boxFixed {
	height: 200px; 
	width: 200px;
	background-color: gray; 
	position: fixed;
}

.boxRelative {
	height: 200px; 
	width: 200px;
	background-color: purple; 
	position: relative;
	left: 300px;
}


.boxAbsolute {
	height: 800px; 
	width: 200px;
	background-color: pink; 
	position: absolute;
	right: 200px;
}