
main
{
	width:100%;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-bottom: 0;
	margin: 0;
	overflow: hidden;
}

main .images
{
	width:100%;
	background-size: cover;
	background-position: center;
	text-align: center;
	cursor: default;
	min-height:95vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

main #mainSite
{
	background-image: url("../images/laptop.jpg");
	min-height: 100vh;
}
main #about
{
	background-image: url("../images/office.jpg");

}

main #contact
{
	font-family: oswaldregular;
	width:100%;
	background-color: #002741;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 2px 2px black;
	flex-direction: column;
}

main #contact a
{
	font-size: 2em;
	text-decoration: none;
	display: block;
	text-align: center;
	color:white;
}
h1,h2
{
	color:white;
	cursor:default;
	font-family: oswaldregular;
}

main #services
{
	background-image: url("../images/repair_bench.jpg");
}
main #priceList
{
	padding-top: 50px;
	padding-block: 50px;
	background-image: url("../images/html_background.jpg");
}


.contactImages, #contact h1
{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.welcomeText
{
	font-family: oswaldregular, sans-serif;
	color: #ffffff;
	font-size: 2.3em;
	width:90%;
	text-align: center;
	text-shadow: 2px 2px black;
}

.textDescription
{
	color:#e0e0e0;
	font-family: merriweather, sans-serif;
	font-size:1.3em;
	padding: 0 5% 0 5%;
	text-align: center;
	padding-bottom: 20px;
	text-shadow: 2px 2px black;
	line-height: 1.4em;

}

#simpleList{
	list-style-type:none;
	font-family: merriweather;
	font-size:1em;
	color:#e0e0e0;
	display: flex;
	flex-direction: column;
	width: 90vw;
	gap:1.5em;
	align-items: center;
	text-align: center;
	padding: 0;
}

#simpleList li
{
	width: 100%; 
	align-self: center;
}

#goDown
{
	cursor: pointer;
	color:#a8a7a7;
	text-decoration: none;
	font-family: oswaldregular, sans-serif;
	font-size:1.5em;
	padding: 0 5% 0 5%;
	text-align: center;
	padding-bottom: 20px;
	text-shadow: 2px 2px black;
}

#goDown::after
{
	content:"";
	width: 1.2em;
	height: 1.2em;
	background-size: 1.2em 1.2em;
	background-image: url("../images/arrow.png");
	display: inline-block;
	position: relative;
	top:10px;
}

#goDown:hover::after
{
	will-change: transform;
	animation: arrowAnimation 1s infinite;

}
.contactHref
{
	text-decoration: none;
	font-size: 2em;
	font-family: oswaldregular;
}
.contactHref::after
{
	content:"";
	width: 1.2em;
	height: 1.2em;
	background-size: 1.2em 1.2em;
	background-image: url("../images/arrow.png");
	display: inline-block;
	position: relative;
	top:10px;
}
.contactHref:hover::after
{
	will-change: transform;
	animation: arrowAnimation 1s infinite;
}

@keyframes arrowAnimation {
	0%{bottom:15px;}
	50%{top:15px;}
	100%{bottom:15px;}
}
@media screen and (max-width:336px)
{
	.contactImages
	{
		transform: scale(0.7);
	}
}

@media screen and (min-width:768px)
{
	.textDescription
	{
		font-size: 1.8em;
	}
	.welcomeText
	{
		font-size: 3.5em;
	}
	#goDown
	{
		font-size: 2em;
	}
}

@media screen and (min-width:992px)
{
	.textDescription
	{
		font-size: 2em;
	}
	.welcomeText
	{
		font-size: 4em;
	}
	#goDown
	{
		font-size: 2.5em;
	}

}
