@charset "UTF-8";

/* CSS rules go below */

body{
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	color:rgb(244, 244, 244);
	background-color:rgb(129, 130, 130);
	background: radial-gradient(circle, rgb(40, 41, 37), rgb(115, 125, 80), rgb(225, 244, 50));
}

.page-wrapper{
	padding:1rem;
	display: flex;
	flex-direction: column;
}

header, nav, section, footer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin-top:2.5vw;
	margin-bottom:2.5vw;
}

h1, h2, p{
	text-align: center;
	max-width: 30rem;
}

.extension-download a{
	font-size:1.5rem;
	padding:1.5rem;
	border-radius: 2rem;
	text-decoration: none;
	position: relative;
	border: 1px solid rgb(25, 13, 248);
}
/*
.extension-documentation{
	width:70vw;
	margin-left: 50px;
	margin-bottom: 20px;
	
}*/


.extension-documentation-video{
	display: grid;
	place-items: center;
	margin-right: 63px;
	
}

.image-row{
	width: 1000px;
	justify-content: center;
	margin-top: 20px;
	margin-left: 200px;

}

.extension-reviews-block{
	width:100%;
	max-width: unset;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.extension-review{
	width:25vw;
	padding:1rem;
	margin:1rem;
	border:1px solid black;
	box-sizing: border-box;
}

img{
	display:inline-flex;
	float:left;
	clear:both;
	width:35%;
	height:auto;
	flex-wrap: wrap;
	margin-left: 50px;
	/*
	margin-top:1rem;
	margin-bottom:1rem;
	margin-left: 8rem;
	*/
	background-color: black;
}

video{
	display:inline-flex;
	float:left;
	clear:both;
	width:50%;
	height:auto;
	flex-wrap: wrap;
	margin-left: 80px;
	/*
	margin-top:1rem;
	margin-bottom:1rem;
	margin-left: 8rem;
	*/
	background-color: black;
}

section.extension-installation ol{
	text-align: left;
}

footer{
	border-top:1px solid black;
}



/* CSS style for mobile devices */

@media (max-width: 780px) {
  	.extension-documentation{
		width:90vw;
	}
	.extension-review{
		width:90vw;
		margin-left:0;
		margin-right:0;
	}
}

img:hover, svg:hover{
    filter: brightness(1);
    image-rendering: optimizeQuality;
    /*
    margin-left: 50px;
    margin-right: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    */
    z-index: 10;
	position: relative;
    transform: scale(1.3);
	align-content: center;
}



