/* General */

body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient( rgba(182, 182, 182, 0), rgba(112, 60, 1, 0)), url("../outils/cat-PC.jpg") no-repeat;
	color: white;
	background-size: cover;
	background-color: grey;
}

.scroll-container {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}

.scroll-container section {
	width: 100%;
	height: 100%;
}

.dots {
	z-index: 1;
	list-style: none;
	padding: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.dots li a {
	padding: 10px;
	width: 4px;
	height: 5px;
	display: block;
}

.dots li a:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.48);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease;
	-moz-transition: -moz-transform 0.3s ease, background-color 0.3s ease;
	-ms-transition: -ms-transform 0.3s ease, background-color 0.3s ease;
	-o-transition: -o-transform 0.3s ease, background-color 0.3s ease;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.dots li a.active:before {
	content: '';
	background-color: #FFFFFF;
	width: 14px;
	height: 14px;
	margin-top: -4px;
	left: 7px;
	background-color: rgb(255, 255, 255);
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-ms-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
}

.dots-right {
	right: 10px;
}

.dots-left {
	left: 10px;
}

section .container {
	font-family: 'Source Code Pro', monospace;
	font-style: normal;
	text-align: center;
	position: relative;
	top: 15%;
	margin-left: 30%;
	margin-right: 30%;
	background: rgba(128, 128, 128, 0.466);
	border: rgb(148, 148, 148) 1px solid;
	text-shadow: 0 0 10px black;
	transform: translateY(-15%);
}

button {
	border-bottom: 3px solid #5f5850;
	border-right: 3px solid #5f5850;
	padding: 5px 10px;
	border-radius: 10px;
	font-size: 1em;
	color: #fff;
	text-decoration: none;
}

button:hover {
	border-bottom: 3px solid #91867b;
	border-right: 3px solid #91867b;
	cursor: pointer;
}

ul li {
	list-style: none;
}

a {
	text-decoration: none;
	color: white;
}

@media (max-width: 500px) {
	section .container {
		margin-left: 10%;
		margin-right: 10%;
	}
}