body {
  margin: 0;
}

.page {
  margin: auto;
  max-width: 1000px;
  border: 2px solid rgb(0, 0, 0);
}

.header {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  margin: auto;
  max-width: 600px;
  background-color: rgb(0, 0, 0);;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  justify-content: center;

}

.img-container {
  flex: 1;
  min-width: 450px;
}

.img {
  padding-left: 15px;
  max-width: 300px;
}

.title {
  min-width: 450px;
  padding-left: 15px;
  flex: 1;
  text-transform: uppercase;
}

.nav {
  width: 100%;
}

.links {
  width: 90%;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: space-between;
}

.links__info {
  text-decoration: none;
  color: white;
}

.links__info:hover {
  color: rgb(212, 211, 211);
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.info__text {
  display: flex;
  flex-direction: column;
}

.section {
  border-top: 2px solid rgb(0, 0, 0);
  flex: 1;
  min-width: 450px;
  padding-left: 15px;
  padding-right: 15px;
}

.footer {
  height: 50px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid rgb(0, 0, 0);
}

.footer__github-link {
  padding-top: 12px;
  text-decoration: none;
  padding-left: 15px;
  color: black;
}

.footer__rs-link {
  padding-top: 12px;
  width: 73px;
  height: 26px;
  padding-right: 15px;
}

.footer__logo {
  height: 26px;
}

.section__link {
  text-decoration: none;
  color: black;
}