/* CONFIGURAÇÕES DE FONTES //////////////////////////////////////////////////////////////////////// */

.titulo {
  font-style: bold;
  font-family: "Georgia";
  font-size: 60px;
  color: #ADD8E6;
}

.subtitulo {
  font-style: bold;
  font-family: "Georgia";
  font-size: 30px;
  color: #ADD8E6;
}

.atualiz {
  font-style: bold;
  font-family: "Georgia";
  font-size: 20px;
  color: #ADD8E6;
}

.titulosecao {
  font-style: bold;
  font-family: "Georgia";
  font-size: 45px;
  color: #ADD8E6;
}

.titulosecao2 {
  font-style: bold;
  font-family: "Georgia";
  font-size: 35px;
  color: #ADD8E6;
}

.link {
  text-decoration: none
}

.linkamarelo {
  text-decoration: none;
  color: yellow;
}

.linkgrande {
  text-decoration: none;
  font-size: 20px;
}

.linkazul{
  text-decoration: none;
  font-family: "Georgia";
  font-size: 18px;
  color: #ADD8E6;
}

.miolo {
  font-style: bold;
  font-family: "Georgia";
  font-size: 20px;
  color: #222222;
}

.titulomenor {
  font-style: bold;
  font-family: "Georgia";
  font-size: 25px;
  color: white;
}

.subtitulomenor {
  font-style: bold;
  font-family: "Georgia";
  font-size: 20px;
  color: white;
}

.miolotabela {
  font-style: bold;
  font-family: "Georgia";
  font-size: 18px;
  color: #222222;
}

.miolomenor {
  font-style: bold;
  font-family: "Georgia";
  font-size: 16px;
  color: #222222;
}

.texto {
  font-style: bold;
  font-family: "Georgia";
  font-size: 18px;
  color: white;
}

.textomenor {
  font-style: bold;
  font-family: "Georgia";
  font-size: 16px;
  color: white;
}

/* CONFIGURAÇÕES DE MENU ////////////////////////////////////////////////////////////////////////// */

/* Navbar container */
.navbar {
  overflow: hidden;
  /* cor da barra do menu */
  background-color: #3B3B3B;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-family: "Georgia";
  font-size: 20px;
  color: white;
  text-align: center;
/*  padding: 14px 16px; */
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: #ADD8E6;
/*  padding: 14px 16px; */
  background-color: inherit;
  font-family: "Georgia";
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #5C5C5C;
  height: 38pt;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3B3B3B;
  min-width: 160px; 
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  font-family: "Georgia";
  font-size: 18px;
  color: #ADD8E6;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #5C5C5C;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}