@import url(inicio.css);
@import url(sobre.css);
@import url(desenvolvedores.css);
@import url(footer.css);
@import url(professores.css);


* {    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;

}
body{
  width: 100%;
  height: auto;

}

a{
    text-decoration: none;
}

#parallax{
  width: 100%;
  height: 400px;

  background-image: url(../../../Public/assets/fotosDesenvolvedores/Turma.webp);

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  border-top: 2px solid gray;
  border-bottom: 2px solid gray;
}
::-webkit-scrollbar{
  width: 12px;
}
::-webkit-scrollbar-thumb{
  width: 10px;
  background-color: #9849ff;
  border-radius: 50px; 
}

.linkDev{
  font-size: 20px;
  color: white;
  /* text-decoration: none; */
  text-decoration: underline;
}