@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-weight: 300;
}

img {
  max-width: 100%;
}

body {
  background-color:#24292e;
  font-family: "Kumbh Sans", sans-serif;  
  text-align: center;    
  padding-bottom: 100px;
}

main {
  display: flex;  
  justify-content: center;
  flex-direction: column;
  padding: 50px 0 0;      
}

.devicon-github-original{
  font-size: 60px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.section{
  padding: 70px 0;
  border-top: 1px solid #ccc;
}

.container {
  width: 60%; /* se for uma tela menor que 980px vai se adaptar a 70% */
  max-width: 960px; /* quando chegar em 980px para de aumentar */
  box-shadow: rgba(0, 0, 0, 0.3) 0px 25px 50px -12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  padding: 30px;
  margin: 0 auto;
}

.container header {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
}

.container header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.container header #input-search {
  width: 400px;
  font-size: 17px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 7px;
  border: 1px solid grey;
}

.container header #btn-search {
  width: 200px;
  font-size: 17px;
  margin: 20px auto 0;
  padding: 10px;
  border-radius: 7px;  
  cursor: pointer;
  border: 1px solid grey;
}

.container header #btn-search:hover {
  background-color: rgb(67, 177, 76);
  color: #ffffff;
  border-color: #ffffff;
}

.container .profile-data{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;  
}

.container .profile-data .info {
  display: flex;  
  flex-wrap: wrap;
  align-items: center;
}

.container .profile-data .info .data{
  padding: 40px;
  width: 50%;
}

.container .profile-data .info img{
  width: 50%;
  border-radius: 50%;
  border: 10px solid rgb(58, 116, 5);
}

.container .profile-data .info h1{
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.container .profile-data .info p{
  font-size: 15px;  
  font-weight: 400;
  line-height: 23px;
}
.container .profile-data .eventos{
  background-color: lightgray;
  padding: 30px;
}
.container .profile-data .eventos ul{
  /* display: flex;
  flex-wrap: wrap;
  text-align: left; */
  margin-top: 30px;
}

.container .profile-data .eventos h2{
  margin-bottom: 30px;
  text-align: center;
}

.container .profile-data .eventos ul li {
  /* width: 100%;  
  margin: 5px 0; */
  padding: 10px 0;
}

.container .profile-data .eventos ul li strong{
  font-weight: 700;
}

.container .profile-data .eventos ul li h4,
.container .profile-data .eventos ul li p{
  margin-bottom: 10px;
}


.container .profile-data.hide{
  display: none;
}

.container .profile-data .numbersF{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;  
}

.container .profile-data .numbersF h4{
  margin-bottom: 30px;
}

.container .profile-data .numbersF span{
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-weight: 700;
  display: block;
}

.container .profile-data .numbersF .seguidores span{
  background-color: rgb(88, 236, 30);
}

.container .profile-data .numbersF .seguindo span{
  background-color: rgb(11, 128, 0);
}


.container .profile-data .repositories h4{
  margin-bottom: 30px;
  text-align: center;
}

.container .profile-data .repositories ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.container .profile-data .repositories div i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .profile-data .repositories ul li a{
  padding: 20px;
  border: 1px solid grey;  
  margin: 20px;
  display: block;
  border-radius: 7px;
  transition: 0.3s ease-in-out;
}

.container .profile-data .repositories ul li a:hover{
  background-color:rgb(84, 136, 60);
  color: #fff
}

.container .profile-data .repositories ul li a h4{
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  
}

.container .profile-data .repositories ul li a i{
  display: inline-block;
  font-style: normal;
  padding: 5px;
  background-color: rgb(15, 22, 10);
  color: white;
  border-radius: 5px;  
}
