	body{
		margin: 0;
		padding: 0;
		height: 100vh;
		width: 100vw;
		background-image: url("../imagens/sitebackground.JPG");
		background-repeat: no-repeat repeat-x;
		background-size: 50vw;
		background-position: top;
		background-color:rgb(242 224 199);
		font: 1em/2 ;
		color: #300303;
		letter-spacing: 0.2rem;
	}

@media(min-width: 360px){

  	
.container{
	position: relative;
	justify-content: center;
	align-items: center;
	margin: auto;
	display: block;
	}

	.header{
		position: sticky;
		text-align: center;
		top: 0vh;	
		left: 0vw;
		height: 8vh;
		border: 2px solid #300303;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 10px;
		z-index: 5;
		background-color: rgb(242 224 199 / 1);
		.icone{
			position: absolute;
			width: 20%;
			height: 80%;
			top: 10%;
			left: 80%;

		}
		h1{
			position: absolute;
			font-size: 3vw;
			margin-left: 30%;
			margin-right: 30%;
			top: 0vh;
		}

	}
		/* Botão hamburguer */
	.menuhb{
		position: absolute;
		height: auto;
		width: 30%;
		padding-top: 10px;
		padding-left: 10px;
		top: 20%;
		left: 0vw;
		z-index: 5;


	}

	#menu-toggle{
		display: none;
	}
	.overlay {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 60%;
	  height: 100%;
	  background-color: rgb(242 224 199 / 0.95);
	  border: 4px double #300303;
	  transform: translate(-90vw);
	  transition: transform 0.5s ease-in-out;
	  z-index: 2;
	}

	.menu-icon{
		width: 25px;
		height: 20px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;

	}


	.linha{
		height: 4px;
		background-color: #300303;
		border-radius: 2px;
		transition: 0.3s;
		z-index: 5;
	}

	.menu-icon:hover{
	.linha{
		background-color: #b58f5c;
			}
	}

	/* Estilo menu */
	.menu{
		position: relative;
		top: 20px;
	}

	.menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
				align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.menu li {
		position: relative;
		top: 30px;
		left: 0px;
		margin:10px 0;
		padding: 5px;
		a:link, a:visited{
			background-color: ;
			color: #300303;
			padding: 6px 6px;
			width: 150px;
			text-align: center;
			text-decoration: none;
			display: inline-block;
			border: 3px double black;
			font-size: 0.8rem;
			border-radius: 2px;
			cursor: hover;	
		}
		a:hover{
			background-color: #b58f5c;
		}
		a:active{
			 box-shadow:
		    inset -2px -2px 3px rgb(0 0 0 / 0.6),
		    inset 2px 2px 3px rgb(0 0 0 / 0.6);
		}
	}
		
		
	/* Animação */
	#menu-toggle:checked + .menu-icon .linha:nth-child(1){
		transform: rotate(45deg) translate(5px, 5px);

	}
	#menu-toggle:checked + .menu-icon .linha:nth-child(2){
		opacity: 0;
	}

	#menu-toggle:checked + .menu-icon .linha:nth-child(3){
		transform: rotate(-45deg) translate(6px, -6px);

	}

	#menu-toggle:checked ~ .overlay {
 	 transform: translate(0);
		}	

	.content{
		z-index: 1;
		padding-left: 10px;
		margin: 10px;
		
		position: relative;
		
		.materia{
		margin-bottom: 10px;
		border: 2px solid #300303;
		background-color: rgb(242 224 199 / 0.95);

			.imagem{
				position: relative;
				left: 50%;
				top: 10px;
				transform: translateX(-50%);
				border: 2px double black;
				max-width: 150px;
				max-height: 150px;
				margin:auto;
			}
			h2{
				font-size: 1rem;
				a:link{
				text-decoration: none;
				color: #cabe0e;
				text-shadow: 1px 1px 1px black;
				}

				a:visited{
				text-decoration: none;
				color: #7c0e0e ;
				text-shadow: 1px 1px 1px black;
				}
				a:hover{
					color: red;
				}
			}
			p{
			

				a:link{
				color: #cabe0e;
				}

				a:visited{
				color: #7c0e0e ;
				}
				a:hover{
					color: red;
				}
			}

		}
		
	}
	.footer{
		position: relative;
		z-index: 1;
		padding-left: 10px;
		bottom: 5px;
		margin: 10px;
		margin-bottom: 40px;
		border: 1px solid black;
		background-color: rgb(242 224 199 / 0.95);	
	} 

	.embed{
		width: 164px;
		height: 42px;

		position: relative;
		overflow: hidden;
		border: 2px solid #300303;
  		

  		.blinky{
			position: relative;
			left: 0px;
			width: 120px;
			height: 90px;
  		}
  		.scroller{
			position: absolute;
  			overflow: hidden;
			top: 0vmin;
			left:0vmax;
			animation: blinky-move 15s linear infinite;
		}	
	}

			@keyframes blinky-move 
				{
	  			0% {
	      transform: translate(0, 0);
	  					}
				  100% {
				      transform: translate(0%, -50%);
				  		}
			  }
}

@media(min-width: 720px){


  	
.container{
	position: relative;
	justify-content: center;
	align-items: center;
	margin: auto;
	display: block;
	}

	.header{
		position: sticky;
		text-align: center;
		top: 0vh;	
		left: 0vw;
		height: 8vh;
		border: 2px solid #300303;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 10px;
		z-index: 5;
		background-color: rgb(242 224 199 / 1);
		.icone{
			position: absolute;
			width: 75px;
			height: 45px;
			top: 10%;
			left: 85%;

		}
		h1{
			position: relative;
			text-align: center;
			font-size: 3vw;
			margin-left: 10%;
			margin-right: 10%;
			top: 0vh;
			letter-spacing: 2vw;
		}

	}
		/* Botão hamburguer */
	.menuhb{
		position: absolute;
		height: auto;
		width: 30%;
		padding-top: 10px;
		padding-left: 10px;
		top: 25%;
		left: 3vw;
		z-index: 5;


	}

	#menu-toggle{
		display: none;
	}
		  .overlaybg{
	  	position: absolute;
	  	display: box;
	  	width: 110vw;
	  	height: 110vh;
	  	top: -10vh;
	  	left: -10vw;
	  	z-index: 0;
	  	background-color: rgb(0 0 0 /0.75);

	  	transform: translate(-100%);
	  	transition: transform 0.5s ease-in-out;
	  	transition-delay: 0.3s;
	  }
		#menu-toggle:checked ~.overlaybg 
		{
		
	 	transform:translate(0%);
			}

	.overlay {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 40%;
	  height: 100%;
	  background-color: rgb(242 224 199 / 0.95);
	  border: 4px double #300303;
	  transform: translate(-90vw);
	  transition: transform 0.5s ease-in-out;
	  z-index: 2;

	}

	.menu-icon{
		width: 25px;
		height: 20px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;

	}


	.linha{
		height: 4px;
		background-color: #300303;
		border-radius: 2px;
		transition: 0.3s;
		z-index: 5;
	}

	.menu-icon:hover{
	.linha{
		background-color: #b58f5c;
			}
	}

	/* Estilo menu */
	.menu{
		position: relative;
		top: 20px;
	}

	.menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
				align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.menu li {
		position: relative;
		top: 30px;
		left: 0px;
		margin:10px 0;
		padding: 5px;
		a:link, a:visited{
			background-color: ;
			color: #300303;
			padding: 6px 6px;
			width: 150px;
			text-align: center;
			text-decoration: none;
			display: inline-block;
			border: 3px double black;
			font-size: 0.8rem;
			border-radius: 2px;
			cursor: hover;	
		}
		a:hover{
			background-color: #b58f5c;
		}
		a:active{
			 box-shadow:
		    inset -2px -2px 3px rgb(0 0 0 / 0.6),
		    inset 2px 2px 3px rgb(0 0 0 / 0.6);
		}
	}
		
		
	/* Animação */
	#menu-toggle:checked + .menu-icon .linha:nth-child(1){
		transform: rotate(45deg) translate(5px, 5px);

	}
	#menu-toggle:checked + .menu-icon .linha:nth-child(2){
		opacity: 0;
	}

	#menu-toggle:checked + .menu-icon .linha:nth-child(3){
		transform: rotate(-45deg) translate(6px, -6px);

	}

	#menu-toggle:checked ~ .overlay {
 	 transform: translate(0);
		}	

	.content{
		z-index: 1;
		padding-left: 10px;
		margin: 10px;
		
		position: relative;
		
		padding-top: 10px;
		padding-bottom: 10px;
		position: relative;
		left: 0%;
		column-count: 2;
		column-rule: 0px solid black;

		.materia{
		margin-bottom: 10px;
		border: 2px solid #300303;
		font-size: 0.8rem;
		line-height: 1rem;
		letter-spacing: 0.1rem;
		margin-right: 4px;
		margin-left: 4px;
		text-align: justify;

			.imagem{
				position: relative;
				left: 50%;
				top: 10px;
				transform: translateX(-50%);
				border: 2px double black;
				max-width: 150px;
				max-height: 150px;
				margin:auto;
			}
			h2{
				font-size: 1rem;
				a:link{
				text-decoration: none;
				color: #cabe0e;
				text-shadow: 1px 1px 1px black;
				}

				a:visited{
				text-decoration: none;
				color: #7c0e0e ;
				text-shadow: 1px 1px 1px black;
				}
				a:hover{
					color: red;
				}
			}
			p{
			

				a:link{
				color: #cabe0e;
				}

				a:visited{
				color: #7c0e0e ;
				}
				a:hover{
					color: red;
				}
			}

		}
		
	}
	.footer{
		position: relative;
		z-index: 1;
		padding-left: 10px;
		bottom: 5px;
		margin: 10px;
		margin-bottom: 40px;
		border: 1px solid black;
		background-color: rgb(242 224 199 / 0.95);	
	} 

	.embed{
		width: 164px;
		height: 42px;

		position: relative;
		overflow: hidden;
		border: 2px solid #300303;
  		

  		.blinky{
			position: relative;
			left: 0px;
			width: 120px;
			height: 90px;
  		}
  		.scroller{
			position: absolute;
  			overflow: hidden;
			top: 0vmin;
			left:0vmax;
			animation: blinky-move 15s linear infinite;
		}	
	}

			@keyframes blinky-move 
				{
	  			0% {
	      transform: translate(0, 0);
	  					}
				  100% {
				      transform: translate(0%, -50%);
				  		}
			  }
}	

@media(min-aspect-ratio: 8/5){

body{
	width: 90%;
	margin: auto;
}
  	
.container{
	position: relative;
	justify-content: center;
	align-items: center;
	margin: auto;
	display: block;
	}

	.header{
		position: sticky;
		text-align: center;
		display: flex;
		top: 0vh;	
		left: 0vw;
		min-height: 9vh;
		border: 2px solid #300303;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 10px;
		z-index: 5;
		background-color: rgb(242 224 199 / 1);
		justify-content: center;
		align-items: center;

		.icone{
			position: relative;
			width: 7vw;
			height: 7vh;
			top: 0%;
			left: 85%;

		}
		h1{
			position: relative;
			text-align: center;
			font-size: 2vw;
			margin-left: 10%;
			margin-right: 10%;
			letter-spacing: 2vw;
		}

	}
		/* Botão hamburguer */
	.menuhb{
		position: absolute;
		height: auto;
		width: 30vw;
		padding-top: 1vh;
		padding-left: 1vw;
		top: 1vh;
		left: 3vw;
		z-index: 5;


	}

	#menu-toggle{
		display: none;
	}
		  .overlaybg{
	  	position: absolute;
	  	display: box;
	  	width: 110vw;
	  	height: 110vh;
	  	top: -10vh;
	  	left: -150vw;
	  	z-index: 0;
	  	background-color: rgb(0 0 0 /0.75);

	  	
	  	transition: transform 0.5s ease-in-out;
	  	transition-delay: 0.3s;
	  }
		#menu-toggle:checked ~.overlaybg 
		{
		
	 	transform:translate(150vw);
			}

	.overlay {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 20%;
	  height: 100%;
	  background-color: rgb(242 224 199 / 1);
	  border: 4px double #300303;
	  transform: translate(-90vw);
	  transition: transform 0.5s ease-in-out;
	  z-index: 2;

	}

	.menu-icon{
		width: 2vw;
		height: 3vh;
		display: flex;
		flex-direction: column;
		justify-content: space-between;

	}


	.linha{
		height: 0.5vh;
		background-color: #300303;
		border-radius: 2px;
		transition: 0.3s;
		z-index: 5;
	}

	.menu-icon:hover{
	.linha{
		background-color: #b58f5c;
			}
	}

	/* Estilo menu */
	.menu{
		position: relative;
		top: 20px;
	}

	.menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
				align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.menu li {
		position: relative;
		top: 30px;
		left: 0px;
		margin:10px 0;
		padding: 5px;
		a:link, a:visited{
			background-color: ;
			color: #300303;
			padding: 6px 6px;
			width: 15vmax;
			text-align: center;
			text-decoration: none;
			display: inline-block;
			border: 3px double black;
			font-size: 1vmax;
			border-radius: 2px;
			cursor: hover;	
		}
		a:hover{
			background-color: #b58f5c;
		}
		a:active{
			 box-shadow:
		    inset -2px -2px 3px rgb(0 0 0 / 0.6),
		    inset 2px 2px 3px rgb(0 0 0 / 0.6);
		}
	}
		
		
	/* Animação */
	#menu-toggle:checked + .menu-icon .linha:nth-child(1){
		transform: rotate(45deg) translate(-1vw, 2vw);

	}
	#menu-toggle:checked + .menu-icon .linha:nth-child(2){
		opacity: 0;
	}

	#menu-toggle:checked + .menu-icon .linha:nth-child(3){
		transform: rotate(-45deg) translate(-1vw, -2vw);

	}

	#menu-toggle:checked ~ .overlay {
 	 transform: translate(0);
		}	

	.content{
		z-index: 1;
		padding-left: 0px;
		margin: 0px;
		position: relative;
		padding-top: 10px;
		padding-bottom: 10px;
		position: relative;
		left: 0%;
		column-count: 2;
		column-rule: 0px solid black;

		.materia{
		margin-bottom: 10px;
		border-bottom: 2px solid #300303;
		font-size: 0.8rem;
		line-height: 1rem;
		letter-spacing: 0.1rem;
		margin-right: 8px;
		margin-left: 8px;
		padding-left: 8px;
		text-align: justify;


			.imagem{
				position: relative;
				left: 50%;
				top: 10px;
				transform: translateX(-50%);
				border: 2px double black;
				max-width: 150px;
				max-height: 150px;
				margin:auto;
			}
			h2{
				font-size: 1rem;
				a:link{
				text-decoration: none;
				color: #cabe0e;
				text-shadow: 1px 1px 1px black;
				}

				a:visited{
				text-decoration: none;
				color: #7c0e0e ;
				text-shadow: 1px 1px 1px black;
				}
				a:hover{
					color: red;
				}
			}
			p{
			

				a:link{
				color: #cabe0e;
				}

				a:visited{
				color: #7c0e0e ;
				}
				a:hover{
					color: red;
				}
			}

		}
		
	}
	.footer{
		position: relative;
		z-index: 1;
		padding-left: 10px;
		bottom: 5px;
		margin: 10px;
		margin-bottom: 40px;
		border: 1px solid black;
		
	} 

	.embed{
		width: 164px;
		height: 42px;

		position: relative;
		overflow: hidden;
		border: 2px solid #300303;
  		

  		.blinky{
			position: relative;
			left: 0px;
			width: 120px;
			height: 90px;
  		}
  		.scroller{
			position: absolute;
  			overflow: hidden;
			top: 0vmin;
			left:0vmax;
			animation: blinky-move 15s linear infinite;
		}	
	}

			@keyframes blinky-move 
				{
	  			0% {
	      transform: translate(0, 0);
	  					}
				  100% {
				      transform: translate(0%, -50%);
				  		}
			  }
}	