* {
  font-family: var(--font);
  font-family: bold;
  font-weight: bold;
  font-size: 32px;
  box-sizing: border-box;
  
}
:root{
  --font:"Open Sans", sans-serif;
  --cinza: #494242;
  --branco: white;
  --backgroundAzul:rgb(203, 222, 243);
  --backgroundBotao: #0a3871;
}
body {
  width: 100vw;
  min-height: 100vh;
  background: var(--backgroundAzul)
}
body::-webkit-scrollbar {
  /*corpo da barra*/
  width: 3px;
  height: 3px;
}
.header {
  top: 0;
  right: 0;
  padding-top: 1.5rem;
  cursor: pointer;
}
.botoes {
  height: 60px;
  width: 260px;
  font-size: 1.3rem;
  margin:  1rem 1rem 0 1rem;
  text-decoration: none;
  border-radius: 24px;
  transition: 0.5s;
  cursor: pointer;
  background-color: var(--backgroundBotao);
  color: var(--branco)
}
.botoes:hover {
  font-size: 35px;
}

.footer img {
  cursor: pointer;
}
.divFooter {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2rem 2rem;
  font-weight: bold;
  color: var(--cinza)
}


.ocultar  {
  transition: all 1s;
  display: none !important;
  
}
@media (min-width: 425px) {
  .botoes{
    height: 70px;
    width: 300px;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .botoes {
    font-size: 2rem;
    width: 365px;
  }
  .divFooter {
    justify-content: flex-start;
  }
}

