/* Estilos globais */
* {
  font-family: "Play", sans-serif;
}

/* Estilo do artigo de notícias */
.newsArticle {
  min-height: 500px;
  background-color: white;
  margin: 60px auto 40px;
  padding: 20px;
  border-radius: 15px;
  width: 60%;
  border: 5px solid rgb(212, 117, 0);
}

/* Título do artigo */
.articleTitle {
  font-weight: bold;
  text-align: center;
  font-size: 40px;
  padding: 20px;
}

/* Descrição do artigo */
.articleDescription {
  font-size: 16px;
  padding: 0 20px 10px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}

/* Estilos da equipe */
.team {
  text-align: center;
}

.teamPlayers {
  display: inline-block;
  margin: 30px;
}

/* Papéis da equipe */
.adm,
.modder,
.helper,
.builder {
  vertical-align: 25px;
  font-size: 30px;
}

.adm {
  color: red;
}

.modder {
  color: greenyellow;
}

.helper {
  color: cyan;
}

.builder {
  color: goldenrod;
}

/* Responsividade */
@media screen and (max-width: 1600px) {
  .newsArticle {
    width: 80%;
  }
}

@media screen and (max-width: 990px) {
  .newsArticle {
    width: 98%;
  }
}
