/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:focus {
  color: #fff;
  text-shadow: none; /* Prevent inheritance from `body` */
}

.btn-light:hover{
  color: #c2c2c2;
  text-shadow: none; /* Prevent inheritance from `body` */
}

/*
 * Base structure
 */

 

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  font-family: Cinzel, serif
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */

/* .nav-masthead .nav-link {
  color: #70520f;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: #70520f;
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #926b14;
  border-bottom-color: #926b14;
} */
.nav-masthead .nav-link {
  color: #70520f;
  border-bottom: .25rem solid transparent;
  text-decoration: none;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: #70520f;
  text-decoration: none;
}

.nav-masthead .active {
  color: #926b14;
  border-bottom-color: #926b14;
  text-decoration: none;
}

body{
  color: #926b14;
  background-color: #ffe6e6;
  opacity: 0;
  transition: opacity 2s ease-in; /* Transição de 2 segundos */
}

/* Classe que faz o body aparecer */
body.fade-in {
  opacity: 1;
}

a{
  color: #926b14;
  text-decoration: underline;
}

a:hover{
  color: #f0d18f;
  text-decoration: underline;
}