*{
    padding: 0;
    margin: 0;
}

body{
    background: #121212; /* Fallback for browsers that don't support gradients */
  background: linear-gradient(
    135deg,
    #121212 25%,
    #1a1a1a 25%,
    #1a1a1a 50%,
    #121212 50%,
    #121212 75%,
    #1a1a1a 75%,
    #1a1a1a
  );
  background-size: 40px 40px;

  /* Animation */
  animation: move 4s linear infinite;
}


@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

#desenvolvedor{
    position: fixed;
    bottom: 0;
    left: 0;
    color: #51447b;
    font-family: "Chakra Petch", sans-serif;
    font-size: 14px;
    margin: 10px;
    z-index: 100;
}

.divisão-geral{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.divisão1{
    position: fixed;
    height: 100%;
    background-color: rgb(255, 255, 255);
    width: 20%;
}

.title{
    padding-top: 10vh;
}

.title h1{
    font-family: "Chakra Petch", sans-serif;
    color: #51447b;
    text-align: center;
    font-size: 1vw;
}


.pesquisa-conteiner{
    display:grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5vh;
    font-family: "Chakra Petch", sans-serif;
    
}

.pesquisa-conteiner input{
    padding: 11px;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #000000;
    background-color: #f5f5f500;
    color: white;
    transition: 0.3s;
}

.pesquisa-conteiner input:focus{
    background-color: #ffffff;
    transition: 0.3s;
    border: none;
    color: black;
    
    
}

.pesquisa-conteiner button{
    padding: 10px;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid #ffffff;
    color: rgb(255, 255, 255);
    cursor: pointer;
    background-color: #51447b;
    font-family: "Chakra Petch", sans-serif;
    transition: 0.3s;
    width: 100%;
    border: 1px solid #000000;

}

.pesquisa-conteiner button:hover{
    background-color: #8270bd;
    transition: 0.3s;
    letter-spacing: 4px;
    
}

.text{
    margin: 3vw;
    font-family: "Chakra Petch", sans-serif;
    text-align: center;
    justify-content: center;
}

.text p{
    padding-top: 10px; ;
}

.resultado-conteiner{
    display: flex;
    justify-content: left;
    margin-left: 20vw;
    border: 2px dashed #51447b;
}

.resultado{
    border-radius: 20px;
    border: 1px ;
    padding: 20px;
}

.resultado h1{
    font-family: "Chakra Petch", sans-serif;
    color: white;
    
}

.resultado span{
    color: #51447b;
}

img{
    -webkit-box-shadow: 0px 4px 16px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 16px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 16px -4px rgba(0,0,0,0.75);
    transition: 0.3s;
    filter: none;
}


img:hover{
    transform: scale(1.1);
    transition: 0.3s;
    filter: none
}

img:hover > img:not(:hover){
    filter: blur(2px);
}

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.imagem-grande {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}


.logo-conteiner{
    margin-top: 5vh;
    margin-bottom: 0vh;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
}

#logo{
    width: 40%;
    text-align: center;
    justify-content: center;
    display: flex;
    box-shadow: none;
    transition: 0.4s;
    border-radius: 50px;
    padding: 10px;
}

#logo:hover{
    cursor: pointer;
    transition: 0.4s;
    background-color: #51447b;
}

#logo:active{
    transition: 0.2s;
    transform: scale(0.6);

}

