* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: auto; */
  font-style: normal;
}

body {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 3%;
}

a {
  color: rgb(13, 13, 13);
  font-size: 1em;
}

a:hover {
  color: rgb(13, 56, 199);
}

a:active {
  color: rgb(199, 56, 13);
}

p {
  line-height: 1.3em;
  font-size: 1em;
  text-align: justify;
  color: rgba(13, 13, 13, 0.78);
}

li {
  /* font-family: serif; */
  font-size: 16px;
  color: rgba(13, 13, 13, 0.78);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 2em;

}

h1 {
  font-size: 2em;
  color: rgb(13, 13, 13);
}

h2 {
  font-size: 1.5em;
  color: rgb(13, 13, 13);
}

h3 {
  font-size: 1.2em;
  color: rgb(13, 13, 13);
}

.footer p {
  text-align: center;
  color: rgb(13, 13, 13);
}

.header {
  display: flex;
  flex-wrap: wrap;
  min-height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0 10px;
}

#logo {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  min-width: 100px;
}

#menu {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

#menu li {
  color: rgb(0, 0, 0);
  font-family: sans-serif;
}

#social {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 100px;

}

#social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

#social li {
  color: rgb(0, 0, 0);
  font-size: 1.2em;
}

.main {
  display: flex;
  margin-top: 60px;
  margin-bottom: 60px;
  flex-direction: column;
  gap: 5%;
}

.main div {
  padding: 5%;
}

@media screen and (max-width: 600px) {
  .header {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  #logo, #menu, #social {
    flex: 0 0 100%;
    justify-content: center;
    text-align: center;
  }

  #menu ul {
    flex-direction: row;
    gap: 15px;
  }

  #social ul {
    justify-content: center;
  }
}
