*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  font-family: "Outfit", sans-serif;
  background-color: #ffffff;
  color: #b55522;
  font-size: 16px;
}

/* Navigation */
.topbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #b55522;
  padding: 15px;
}

.topbar a {
  color: #FFFFFF;
  text-decoration: none;
}

.topbar a:hover {
  color: #f2b08d;
  text-decoration: none;
}

/* Title */
.intro {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  padding: 100px;
}

.companyname {
  font-size: 54px;
  font-weight: 900;
  margin: 0px 0px -20px;
}

.description {
  font-size: 24px;
  font-weight: 500;
  color: #f2b08d;
  max-width: 400px
}

/* Team of Coders */
.team-container {
  background-color: #fbf0eb;
  padding: 30px 0px
}

.codersection {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #f2b08d;
  gap: 5px;
  margin: 10px 100px 0px;
}

.codersection img{
  width: auto;
  height: 200px;
  border-radius: 100px;
}

.teamtitle {
  font-size: 36px;
  margin: 0px 100px 40px;
}

/* Our Projects */
.projects {
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
font-size: 24px;
font-weight: 500;
color: #f2b08d;
gap: 10px;
margin: 50px 100px 120px;
}

.ourprojects {
  font-size: 32px;
  margin: 100px 100px 40px;
  color: #b55522;
}

.projects img {
  width: auto;
  height: 230px;
  border-radius: 50px;
}

/* Footer */
footer {
  background-color: #f2b08d;
  padding: 30px 100px;
}

.footercontent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footerlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  max-width: 400px;
}

.footerlinks a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.footerlinks a:hover {
  color: #b55522;
}

.footercopyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.actionbutton {
  background-color: #b55522;
  color: #fef2ec;
  padding: 10px 30px;
  border: hidden;
  border-radius: 50px;
  font-weight: 700;
}

.footercopyright a {
  color: #fef2ec;
  text-decoration: none;
  font-size: 12px;
}
