@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sintony&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
}
body {
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  color: rgb(5, 5, 5);
}
.nav {
  background-color: rgb(194, 188, 188);
  height: 500px;
  color: white;
}
.nav__flex {
  display: flex;
  flex-flow: row wrap;
  padding-right: 25px;
  padding-top: 25px;
  font-size: 20px;
  justify-content: flex-end;
}
.nav__link {
  flex-basis: 100px;
  font-family: "Anton", sans-serif;
}
#nav__link--changeBG {
  border: 3px solid rgb(165, 68, 68);
  text-align: center;
  border-radius: 10px;
}

.nav__flex a {
  color: white;
  text-decoration: none;
}
#nav__link--changeBG a:hover,
#nav__link--changeBG:hover {
  background-color: rgb(165, 68, 68);
}

.title {
  margin-left: 53px;
  font-size: 625%;
}
.title__byline {
  margin-left: 58px;
}
/*the rest*/
.container2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  margin-top: 20px;
  margin-top: 80px;
}
.container2 #img {
  border-radius: 50px 0 50px 0;
  width: 300px;
  box-shadow: 10px 10px rgb(180, 178, 178);
}
.container2 div:nth-child(1) {
  grid-column: 1 / 2;
  padding-left: 25%;
}
.container2 div:nth-child(2) {
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: center;
}
.biggerText {
  font-family: "Oswald";
  font-size: 40px;
}
img {
  width: 25px;
}
table td {
  padding: 25px;
}
.info {
  margin: 0 auto;
  width: 750px;
  margin-top: 7%;
}
.biggerIcons {
  width: 150px;
}

/*h2 {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 1em;
  border-style: none none none solid;
}*/
footer {
  background-color: rgb(194, 188, 188);
  color: white;
  margin-top: 50px;
  text-align: center;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 500px) {
  .container2 div:nth-child(2) {
    grid-column: 1/4;
  }
  .container2 div:nth-child(1) {
    grid-column: 1 / 4;
  }
  .container2 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .title {
    margin: 0 auto;
    width: 95%;
    font-size: 86px;
    padding-top: 25px;
  }
  .info {
    margin: 0 auto;
    width: 95%;
  }
  hr {
    width: 300px;
  }
}
