@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: #b4a19d;*/
  background-color: rgb(194, 188, 188);
  height: 80px;
  color: white;
}
.nav__flex {
  display: flex;
  flex-flow: row wrap;
  padding: 25px;
  font-size: 20px;
}
.link__link--grow {
  flex-grow: 17;
  padding-left: 30px;
}
.nav__link {
  flex-grow: 1;
  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);
}
img {
  width: 33px;
}
.socialmedia {
  border: 2px solid rgb(194, 188, 188);
  border-style: none solid;
  width: 500px;
  margin: 0 auto;
  height: 517px;
  display: flex;
  justify-content: center;
  align-items: center;
}
table td {
  padding: 50px;
}
footer {
  background-color: rgb(194, 188, 188);
  color: white;
  text-align: center;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0px;
}
@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;
  }
  hr {
    width: 300px;
  }
  body {
    margin: 10px;
    margin: 0;
  }
  .container {
    flex-direction: column;
  }
  .socialmedia {
    max-width: 450px;
  }
}
