
@font-face {
	font-display: swap;
	font-family: 'Courier Prime';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/courier-prime-v11-latin-regular.woff2') format('woff2');
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

body {
	box-sizing: border-box;
	display: grid;
	place-items: center;
	overflow: hidden;
	font-family: "Courier Prime";
	color: rgba(255,255,255,0.6);
	background-color: #121212;
}

#video-fundo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.conteudo {
	background: rgba(255,255,255,0.2);
	padding: 30px;
	border-radius: 15px;
	max-width: 330px;
	text-align: center;
	position: relative;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.slider{
	display: flex;
	width: 100%;
	max-width: 350px;
	height: 300px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	border-radius: 8px;
	border: 2px solid rgba(255,255,255,0.6);
}

.slider img {
	flex: 0 0 100%;
	width: 100%;
	object-fit: cover;
	scroll-snap-align: start;
	opacity: 0.6;
}

.slider img:hover {
	opacity: 1;
}

.slider::-webkit-scrollbar{
	display: none;
}

.slider {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

button {
	background-color: rgba(255,255,255,0.6);
	color: rgba(0,0,0,0.6);
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
	width: 100%;
}

button:hover { 
	background-color: rgba(255,255,255,0.9);
	color: rgba(0,0,0,0.9);	
	font-weight: bold;
}

.option {
	padding: 3px 8px;
	width: 100px;
	margin: 10px 0 0 0;
}

.option.active { 
	background-color: rgba(255,255,255,0.9);
	color: rgba(0,0,0,0.9);	
	font-weight: bold;
}

.form {
	padding: 3px 8px;
	width: auto;
	margin: 10px 0 0 0;
}

input {
	box-sizing: border-box;
	text-align: center;
	background-color: rgba(255,255,255,0.6);
	color: rgba(0,0,0,0.6);
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	width: 100%;
}

input:focus { 
	background-color: rgba(255,255,255,0.9);
	color: rgba(0,0,0,0.9);	
	font-weight: bold;
}
