body {
	background: linear-gradient(rgb(0, 0, 0), rgb(1, 55, 69));
}

/* rysunek początkowy na stronie głównej aktywny do momentu gdy szerokość ekranu nie zmniejszy się poniżej 800px */
.presentation {
	width: 100vw;
	height: 18vw;
	background: url("../img/prezentacja.png");
	background-size: cover;
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 85%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 85%);
	position: absolute;
	z-index: 1;
}

.mainText {
	width: 84%;
	margin: auto;
	margin-top: 8vw;
	padding: 8%;
	padding-top: 50px;
	padding-bottom: 25px;
	text-align: center;
	font-size: 22px;
	line-height: 40px;
	color:rgb(226, 234, 168);
	z-index: 10;
}

.mainText a {
	font-size: 18px;
	line-height: 18px;
    text-decoration: none;
	color:darksalmon;
}


/* unvisited yet */
.mainText a:link {
	color:darksalmon;
}

/* visited already */
.mainText a:visited {
	color:darksalmon;
}

/* on hover */
.mainText a:hover {
	color:goldenrod;
	transition: 1.5s;
}

.mainText a:active {
	color:saddlebrown;
}

/* klasa stylizująca linki z jednoczesnym wyśrodkowaniem z ikoną download w flex kontenerze i obłożyć tłem do klikania z animowaną linią linkową */
.navWrapper {
	width: fit-content;
	height: 40px;
	margin: auto;
	display: flex;
	justify-content:center;
	align-items: center;
	position: relative;
	font-size: 18px;
	line-height: 18px;
	color:darksalmon;
}

/* tło do klikania nałożone na cały flex kontener */
.navWrapperClickable {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;     
	z-index: 20;
}

/* linia linkowa bezpośrednio pod tłem do klikania */
.navWrapperClickable::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(116, 7, 40);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

/* animacja linii linkowej */
.navWrapperClickable:hover::after {
    transform: scaleX(1);
	background-color: rgb(198, 127, 13);
}

/* ikona download */
.download
{
	background: url("../img/download.png");
    background-color: transparent; /* zapobiega zmianie tła obrazka podczas jego kliknięcia i trzymania */
	width: 115px;
	height: 34px;
	background-size: cover;
}

/* małe ikony powiększające się po najechaniu na stronie głównej */
.frontIcons {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-around;
	margin-top: 5vw;
}

.logoNauka {
	width: 125px;
	height: 100px;
	background: url("../img/nauka.png");
	background-size: cover;
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
}

.logoNauka:hover {
	transform: scale(1.5);
}

.logoInstalacje {
	width: 125px;
	height: 100px;
	background: url("../img/instalacje.png");
	background-size: cover;
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
}

.logoInstalacje:hover {
	transform: scale(1.5);
}

.logoWww {
	width: 125px;
	height: 100px;
	background: url("../img/www.png");
	background-size: cover;
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
}

.logoWww:hover {
	transform: scale(1.5);
}