@charset "UTF-8";
@font-face {
	font-family: 'Cambria';
	src: url("../_fonts/cambria.ttf");
}

/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=PT+Serif:wght@700&family=Vollkorn:wght@400;500;700;900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@900&display=swap');

body {
/*	background-color: white:*/
	background-color: #dddddd;
	color: rgba(0,0,0,1);
}

div#interface {
	width: 900px;
	background-color: #ffffff;
	margin: 10px auto 10px auto;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	padding: 10px;
}

header#cabecalho {
	border-bottom: 1px #606060 solid;
	height: 150px;
/*	background: url("../_imagens/lampada_led_logo.png") no-repeat 0px 100px;*/
/*	background-color: #dddddd;*/
}

header#cabecalho h1{

    font-family: 'Cambria', 'Georgia', serif;
	font-weight: 900, 700, bolder, bold;
	font-size: 30pt;
	color: #000000;
	text-shadow: 0.5px 0.5px white, 4px 2.5px #606060;
	padding: 0px;
	margin-bottom: 0px;
}

header#cabecalho h2{
	font-family: 'Times New Roman', serif;
	font-size: 15pt;
	color: #888888;
	padding: 0px;
	margin-top: 0px;
}


/* Formatação de imagens com legendas */

figure.folder {
	position: relative;
	border: 8px solid white;
	box-shadow:	1px 1px 4px black;
}


figure.folder img {
	width: 100%;
	height: 100%;
}

figure.folder figcaption {
	position: absolute;
	top: 0px;
	background-color: rgba(0,0,0,0.4);
	color: white;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 1s;
}


