/* CSS Document */

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
td {
	font-family: 'quicksandregular', sans-serif;
	font-size: 14px; /*Tidigare 14*/
}
td a {
	text-decoration: none;
}
td.menu a {
	font-size: 18px;
}
td a:hover {
	text-decoration: underline;
}
.outerTable {
	margin: auto;
	width: 90%;
	height: 95%;
}
.innerTable {
	height: 96%;
	width: 100%;
}
.dotted {
	border-bottom: 1px dotted;
}
.contact {
	text-align: left;
	width: 75%;
	font-size: 20px;
}
.portfolioImage {
	max-height: 100%;
	max-width: 100%;
}
.about {
	width: 75%;
}

/* --- Arrow CSS --- */
.arrow {
	width: 60px;
	margin-top: 10px;
	display: inline-block;
	position: relative;
}
.arrow::before, .arrow::after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 2px 2px 0 0;
}
.arrow::before {
	width: 20px;
	height: 20px;
}
.arrow::after {
	width: 30px;
}
.arrow.left::before {
	transform: rotate(-135deg);
	margin: -10px 0 0 2px;
}
.arrow.right::before {
	transform: rotate(45deg);
	margin: -10px 0 0 8px;
}