
/*--------------------------------------
                Universal
  --------------------------------------*/

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: rgb(43, 43, 43);
    color: azure;
    font-family: Arial, Helvetica, sans-serif;
}

/*--------------------------------------
            Plano de Fundo
            background: linear-gradient(45deg, #fe5335, #ff2657, #aa138d);
  --------------------------------------*/

  .gradient {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(to left, #441010, #5a4414, #1f5312, #193652, rgb(74, 18, 82), #520c27, #1b1b1b);
    background-size: 1000% 1000%;
    animation: colors 70s ease infinite;
  }

  @keyframes colors {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @media (max-width: 600px) {
    .text {
      font-size: 1.5rem;
      padding: 1rem 2rem;
    }
  }

/*--------------------------------------
                Navbar
  --------------------------------------*/
#NAVBAR{
    background-color: rgba(0, 0, 0, 0.418);
}

#logo{
    width: 100px;
}

#NAVBAR li{
    list-style: none;
}

#NAVBAR li a{
    color: aliceblue;
    font-size: 16px;
    text-decoration: none;
}

#NAVBAR span{
    display: flexbox;
    color: white;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/*--------------------------------------
                Conteúdo
  --------------------------------------*/
.caixinha{
    padding: 0px;
    margin: 40px 7px 7px 7px;
    border-radius: 20px;
    background-color: rgba(7, 7, 7, 0.25);
    
}

.caixinha img{
    max-width: 100%;
    max-height: 100%;

}

.logo{
  border-radius: 0px !important;
  border-style: none !important;
  margin-bottom: 0px !important;
}

.caixinha p{
    margin: 0 0 5px 0;
    padding: 0 0 0 5px;
}

.caixinha p:hover{
    background-color: rgb(255, 0, 64);
    border-radius: 10px;
}

.hover_azul p:hover{
  background-color: rgb(0, 49, 156) !important;
  border-radius: 10px;
}

.hover_amarelo p:hover{
  background-color: rgb(184, 143, 11) !important;
  border-radius: 10px;
} 

.caixinha a{
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.risco_azul img{
    border-color: rgb(0, 183, 255);
}

.risco_amarelo img{
    border-color: rgb(255, 208, 0);
}

#conteudo_img{
    border-radius: 15px 15px 0px 0px;
}


/*--------------------------------------
                Tarefas
  --------------------------------------*/

.titulo{
  padding-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
}

#titulo_tarefas{
  margin-top: 30px;
  text-align: center;
}

.add{
    margin-left: 2vh;
    border-width: 1.5px;
    border-color: rgba(255, 0, 64, 0.705);
    border-radius: 50%;
    color: rgba(252, 252, 252, 0.726);
    font-size: 18px;
}


