@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@charset "utf-8";

* {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	margin:0;
	padding:0;
}

Body {
	font-family: 'Merriweather', Verdana, Helvetica, sans-serif;
	background-color:#404F59;
}

main {
	display:none;
}

#giratu {
	width:500px;
	border-radius:8px;
	border:#404F59 3px solid;
	background-color: rgba(0,0,0,.2);
	margin:30px auto;
	display:block;
} 

#giratu h2 {
	color:#C1E2D2;
	font-weight:500;
	font-size:24px;
	text-align:center;
	line-height:3;
	display:block;
}

h1 {
	font-size:20px;
	font-weight:600;
	color: #C1E2D2;
	text-shadow: #000 1px 1px 2px;
	letter-spacing:1px;
	border-bottom: #C1E2D2 2px solid;
	border-top: #C1E2D2 2px solid;
	background-color:rgba(0,0,0,.4);
	width: auto;
	padding: 6px 8px;
	margin-top:8px;
	left:8px;
	width:auto;
	z-index:99;
	position: absolute;
}

h2 {
	font-size:18px;
	font-weight:600;
	color:#C1E2D2;
	padding-left:8px;
	margin-right:4px;
	display: inline;
}

h3 {
	font-size:16px;
	font-weight:100;
	color:#C1E2D2;
	padding-left:4px;
	margin-right:8px;
	display: inline;
}


/*-----------------------------------------------------------------------------------*/

header {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: stretch;
	width:100%;
	position:fixed;
	z-index:99;
}

header .titulo{
	width:64%;
	border: # 4px dotted;
}

img {
    max-width: 100%;
    height: auto;
}



header .navegar {
	width:18%;
	padding-top:12px;
}

/*---------------------------------- MENU -------------------------*/

header .navegar a {
	font-size:14px;
	font-weight:500;
	color:#fff;
	text-align: center;
	text-shadow: #000 1px 1px 2px;
	line-height:2;
	letter-spacing:1px;
	border: #D4F2E3 thin solid;
	border-radius: 8px;
	background-color:rgba(0,0,0,.5);
	width:60px;
	margin:auto;
	display:block;
}

header .navegar a:hover {
	color: #11B8D5;
	text-decoration:none;
}

/*--------------------------------------------------- Full Screen ----------------------------------*/

header .fullscreen {
	display: -webkit-flex;
	display: flex;
	align-items:stretch;
	border: #D4F2E3 thin solid;
	border-radius: 8px;
	background-color:rgba(0,0,0,.5);
	width:60px;
	padding:2px;
	margin:auto;
	display:block;
	vertical-align: middle;
}

.fullscreen input {
	display: -webkit-flex;
	display: flex;
	align-items:stretch;
	cursor: pointer;
	background-image:url(../gif/fullscreem01.gif);
	background-repeat:no-repeat;
	width:34px;
	height:26px;
	margin:auto;
	background-color:rgba(0,0,0,.0);
}

.fullscreen input:hover {
	background-image:url(../gif/fullscreem02.gif);
}

input {
	font-weight:400;
	font-size:20px;
	color: #000;
	background-color:#EAEFFF;
	letter-spacing:1px;
	border: none;
	padding: 6px;
}

@media screen and (max-width: 800px) {

Body {
	background-color:#404F59;
}

main {
	display: block;
}

#giratu {
	display:none;
}


}