/* Importando e definindo a fonte padrão */
@font-face {
  font-family: "System Font Regular";
  src: url("..//fonts/System Font Regular.ttf") format("truetype");
}
/* Definição de variáveis */
:root {
  --main-color: rgb(0, 137, 48);
  --second-color: rgb(0, 76, 50);
  --third-color: rgb(153, 255, 189);
  --contrast-color: #e10800;
}
/* Estilo do título principal */
main h1 {
  text-align: center;
  margin: 10px 0 20px 0;
  font-family: "System Font Regular";
  font-size: 3em;
}
/* Estilo dos contêineres dos professores */
.prof_box {
  max-width: 1200;
  min-width: 280px;
  height: 1fr;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
/* Estilo de cada professor */
.professores {
  height: 525px;
  width: 304px;
  margin: 10px 6px 40px 6px;
  padding: 15px;
  background-color: rgb(228, 228, 228);
  border-radius: 15px;
}
/* Estilo das imagens dos professores */
.professores img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgb(0, 0, 0, 0.5);
}
/* Estilo dos nomes dos professores */
.nomes {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  font-family: "System Font Regular";
  margin: 10px 0 10px 0;
}
/* Estilo dos e-mails dos professores */
.email {
  text-align: left;
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
  text-wrap: wrap;
  display: flex;
  justify-content: start;
}
/* Estilo para os e-mails grandes*/
.email_gg {
  font-size: 19px;
}
/* Estilo para os e-mails do pequenos */
.email_pp {
  font-size: 21px;
}
/* Estilo para o link do currículo */
p #curriculo {
  display: block;
  text-align: center;
  font-size: 20px;
  background-color: rgb(225, 8, 0, 0.9);
  width: 100px;
  margin: 15px auto;
  border-radius: 10px;
  padding: 5px;
  color: white;
  font-family: "System Font Regular";
  transition: transform 0.3s;
}
/* Efeito de hover para o link do currículo */
#curriculo:hover {
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background-color: var(--contrast-color);
  transform: scale(1.2);
}
/* Estilo para links */
p a {
  font-size: 20px;
  font-family: "System Font Regular";
  text-align: left;
}
/* Efeito de hover para links */
p a:hover {
  color: var(--contrast-color);
  font-family: "System Font Regular";
  text-decoration: underline;
}
/* Estilos para telas menores */
@media (max-width: 992px) {
  .prof_box {
    width: 400px;
  }
}
