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

body {
  font-family: 'Ubuntu', sans-serif;
}

.container-fluid{
    padding: 0;
    position: relative;
    min-height: 100vh;
  	
}

.conteudo-principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    transition: 0.6s;
    margin-top: 20px;
    
}

.conteudo-principal p {
  line-height: 1.7rem;
  text-align: justify;
}




/* Gov bar */

.gov-bar {
  display: flex;
  flex-wrap: wrap;
  height: 68px;
  padding: 16px;
  gap: 15px;
  color: #1351b4;
  justify-content: center;
  align-items: center;
}

.descricao-ufcg > p {
  color: #1351b4;
}

.dark-theme .gov-bar{
   background-color: black;
   
}

.gov-bar a {
  text-decoration: none;
  color: #1351b4;
  transition: 0.3s;
}

.gov-bar svg {
  cursor: pointer;
}

.gov-bar > svg:hover {
  background-color: #78b8e6; 
}

.gov-bar a:hover {
  color: #0a2c64;
}

.portal-logo{
  background-color: transparent;
  background-image: url(https://www.gov.br/servidor/++theme++padrao_govbr/img/govbr-logo-medium.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 72px 26px;
  display: inline-block;
  height: 26px;
  min-width: 72px;
  width: 72px;

}

.sr-only{
  color:transparent;
}

.descricao-ufcg{
  width: 200px;
}

.sou-gov{
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: white;
  background-color: #1351b4;
  border-radius: 20px;
  margin-bottom : 20px;
}

.sou-gov > a {           
  color: white;
  cursor: pointer;
}

.sou-gov > a:hover {
  color: white;
}

@media (max-width: 1130px) {
  .gov-bar {
    margin-bottom: 40px;
  }
}

@media (max-width: 658px) {
  .gov-bar {
    margin-bottom: 70px;
  }
}

@media (max-width: 446px) {
  .gov-bar {
    margin-bottom: 100px;
  }
}

@media (max-width: 398px) {
  .gov-bar {
    margin-bottom: 150px;
  }
}

@media (max-width: 338px) {
  .gov-bar {
    margin-bottom: 200px;
  }
}

/*footer*/
footer{
            color: white;
            height: 40px;
            background-color: #021061;
            font-weight: bold;
            display: flex;
            align-items: center;
            position: absolute;
            bottom: 0px;
            left: 0px;
            right: 0px;
  			font-size: 12px;
        }