/* Seleção de cores e fontes padrão*/
body
{
  /* espaçamentos da página */
  padding: 0px;
  margin: 10px;
  border: 10px;

  /* cor de fundo */
  background: url('../img/pergaminho2.png') no-repeat center center;
  background-size: cover;

  /* cor, tamanho de fonte, tipo de fonte */
  color: white;
  font-size: 1.5rem;
  font-family: 'Comfortaa', sans-serif;
}

#cabecalho {
	text-align: center; /* Centraliza a imagem */
}

#minhaImagem {
	width: 1330px;  /* Largura desejada */
	height: auto;  /* Mantém a proporção */
	border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.texto-cinza {
    color: rgb(110, 110, 110);
  }

  @font-face {
    font-family: 'Cardinal';
    src: url('../fonts/Cardinal.ttf') format('truetype'); /* Caminho para a fonte */
    font-weight: normal;
    font-style: normal;
}
/* formatação dos tipos de texto */
h1
{
	font-size: 2.30rem;
	font-family: 'Cardinal', serif;
	text-align: center;
	color: #363636
}

h2
{
	font-size: 4rem;
	font-family: 'Cardinal', serif;
	text-align: center;
}

h3
{
	font-size: 1rem;
	font-family: Constantia;
	text-align: justify;
}

#content
{
  background: white;
  color: black;
  width: 1300px;
  margin: 15px;
  padding: 15px;
  font-size: 1.5rem;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Comfortaa', sans-serif;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* formatação dos links */
a.classe1:link, a.classe1:visited, a.classe1:active 
{
	text-decoration: underline;
	color: #be171d;
}

a.classe1:hover 
{
	text-decoration: underline overline;
	color: #ed1d24;
}

/* formatação dos botões */
.button
{
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  font-family: 'Comfortaa', sans-serif;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.button0
{
  background-color: white;
  color: black;
  border: 2px solid black;
}

.button0:hover {
  background-color: #1966A5;
  color: white;
}

.button1
{
  background-color: white;
  color: black;
  border: 2px solid black;
}

.button1:hover {
  background-color: #1966A5;
  color: white;
}

.button2
{
  background-color: white;
  color: black;
  border: 2px solid black;
}

.button2:hover{
  background-color: #1966A5;
  color: white;
}

.button3 {
  background-color: white;
  color: black;
  border: 2px solid black;
}


.button3:hover {
  background-color: #1966A5;
  color: white;
}

.buttonn
{
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  cursor: pointer;
}

.buttonn0
{
  background-color: black;
  color: white;
  border: 2px solid black;
}

.buttonn0:hover
{
  background-color: black;
  color: white;
}

/* formatação do botão da ficha*/
.fab
{
	position: fixed;
	bottom: 20px;
	right: 20px;
}

.fab button
{
	cursor: pointer;
	width: 55px;
	height: 55px;
	border-radius: 30px;
	background-color: #f00;
	border: none;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.3rem;
	color: white;
}

.fab button.main
{
	position: absolute;
	width: 65px;
	height: 65px;
	border-radius: 30px;
	background-color: #000;
	right: 0;
	bottom: 0;
	z-index: 20;
}

.fab button.main:before
{
	content: 'ficha';
}

.fab button.main:active,
.fab button.main:focus {
	outline: none;
	background-color: #ed1d24;
}

.fab button.main:active:before,
.fab button.main:focus:before {
	content: '';
}

/* dados para camada da ficha de personagem */
.modalVisual {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
}

.modalConteudo {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 800px;
}

#txtImg {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

.fechar {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
}