/* CSS Document */

/* All */
p{
	color: green;
	text-align: center;
}

.center{
	position: absolute;
	top: 50%;
	text-align: center;
	width: 100%;
	font-size: 18px;
	
}

.middle{
	position: relative;
	text-align: center;
	width: 100%;
}

nav{
	margin: 10px;
}

a.button{
	text-decoration: none;
	color: black;
	display: inline-block; /* Can set width, height and margins/paddings, but does not add line break after */
	margin-top: 30px;
	background-color: aqua;
	font-size: 30px;
	border-radius: 25px; /* Makes corners round */
	padding: 10px; /* Makes box around bigger */

}

a.button:hover{
	border: solid;
	border-color: blue;
	border-width: 5px;
	margin-top: 25px;
}

#back{
	font-size: 20px;
}

html, body{
	height: 100%;
	margin: 0;
}

.scroll{
	top: 200vh;
	left: 200vw;
	position: absolute;
}

/* All END*/

/* Main page */

#Uppgifter{
	text-align: center;
}

#LeftSide{
	width: 30%;
	height: 100%;
	float: left;
	background-color: rgb(100, 0, 120);
}

#RightSide{
	width: 30%;
	height: 100%;
	float: right;
	background-color: rgb(255,0,0);
}

/* Main page END*/

/* Uppgift 1 */
#Image{
	width: 400px;
	height: 200px;
	
	display: block;
	margin: auto;
	
}


#Breadtext{
	text-align: center;
	margin-top: 10px;
}

/* Uppgift 1 END*/

#fluga{
	position: absolute;
	top: 50vh;
	left: 50vw;
	z-index: 99;
}


