/* Colors 
Home, section 1 (head, background): #9fa7bf
Home, section 1 (head, boxes): #568c63
Home, section 2 (developers, background): #c5c8d9 
Home, section 2 (developers, boxes): #49736f
 */

/* Utilities  */
p {
  margin: 10px 0;
  font-size: 18px;
}

/* Section header */
.section_header_about {
  background-color: #2a4359;
}


/* Section developers */
.section_developers {
  background-color:#2a4359;
  color: #fff;
  padding: 20px;
  margin: 20px 20px;
  margin-bottom: 0%;
}

.developers {
  display: flex;  
  flex-wrap: wrap;
  background: #2a4359;
  justify-content: space-between;
}
.developers .box {
  flex: 1;
  background: rgba(76, 127, 182, 0.923) ;
  color: white;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  box-sizing: border-box;
}
.developers .box:nth-of-type(1) {
  flex-grow:4;
}
.developers .box:nth-of-type(2) {
  flex-grow:4;
}
.developers .box:nth-of-type(3) {
  flex-grow:4;
}
.developers .box2 {
  flex: 1;
  background: rgba(76, 127, 182, 0.923);
  color: white;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  align-items: center;
  justify-content: center;
}
.developers .box3 {
  flex: 1;
  background: rgba(76, 127, 182, 0.923);
  color: white;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.developers .box2:nth-of-type(1) {
  flex-grow:4;
}
.developers .box2:nth-of-type(2) {
  flex-grow:4;
}
.developers .box2:nth-of-type(3) {
  flex-grow:4;
  background: #c5c8d9;
}
.section_container_buttons_developers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
  padding: 0px 0px;
  margin: 20px 0px;
}
.btn_developers {
  padding: 10px;
  margin: 10px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  background-color: #2a4359;
  border: 0px solid  #c5c8d9;
}
.btn_developers:hover {
  background-color: #fff;
}

@media (max-width: 768px) {
  .section_developers {
    margin-left: 10px; 
    margin-right: 10px; 
  }

  .developers .box {
    flex-basis: calc(50% - 20px); 
  }

  .section_container_buttons_developers {
    margin-top: 20px;
  }

  .btn_developers {
    flex-basis: calc(50% - 20px); 
  }
}

img.developer-photo {
  width: 200px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover; 
}
