@charset "UTF-8";

/* CSS rules go below */

@font-face {
	font-family: curlzmt;
	src: url('../../content/downloads/curlzmt.ttf');
  }
  
  div {
	font-family: curlzmt;
  }

body{
	color:black;
	background-image: url('../../content/images/cat.gif');
	cursor: url("../../content/images/mouse_cursor.ico") 0 0, auto !important;
}

.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;
}

nav a {
	color: black;
}

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

h1 {
	color:rgb(255, 0, 0);
	font-size: 100px;
	max-width: 100rem;
}

h2 {
	color:rgb(255, 0, 0);
}


.extension-download a{
	font-size:50px;
	padding:1.5rem;
	border-radius: 5rem;
	text-decoration: none;
	border: 5px solid rgb(255, 0, 0);
	color:rgb(255, 0, 0);
	background-color: rgb(255, 0, 0);
}

.extension-download a:hover{
	font-size:50px;
	padding:1.5rem;
	color: white;
	border-radius: 5rem;
	text-decoration: none;
	border: 5px solid rgb(255, 0, 0);
	background-color: rgb(255, 0, 0);
}

.extension-documentation{
	width:50vw;
}

.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;
	overflow: hidden;
}

.extension-review{
	width:25vw;
	padding:1rem;
	margin:1rem;
	box-sizing: border-box;
	background-color: rgb(252, 239, 140);
	overflow-y: scroll;
	height: 15vh;
	max-height: 15vh;
	scrollbar-color: red orange;
}

video, img{
	display: block;
	float:left;
	clear:both;
	width:100%;
	height:auto;
	margin-top:1rem;
	margin-bottom:1rem;
	background-color: black;
}

section.extension-installation ol{
	text-align: left;
	background-color:rgb(161, 247, 218)
}

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

#about{
	background-color:rgb(248, 173, 144)
}


/* CSS style for mobile devices */

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


