:root {
  --primary: #fefefe;
  --secondary: #646869;
  --tertiary: #d4be90;
  --bottom-nav: 3em;
}

body {
  background-color: var(--primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}

.brand-box {
  margin: auto 0;
  height: auto;
  width: 100vw;
  text-align: center;
}

.bottom-nav {
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: auto;
  padding: 1em;
  background-color: var(--primary);
  justify-content: space-evenly;
  border: 1px solid var(--secondary);
}
.bn-content {
  height: var(--bottom-nav);
  width: var(--bottom-nav);
}

.brand {
  width: 50%;
  height: auto;
}

.info-box {
  margin: auto 0;
  height: auto;
  width: 100vw;
  text-align: center;
}

.name-text {
  color: var(--secondary);
  font-size: 1.3em;
  font-weight: bold;
}

.contact-text {
  color: var(--secondary);
  font-size: 1em;
}

.legal-text {
  color: var(--secondary);
  font-size: 0.7em;
}

.link {
  text-decoration: none;
  color: var(--secondary);
}

.link:hover {
  color: var(--tertiary);
}

.contact-divider {
  height: 1px;
  width: 3em;
  background-color: var(--tertiary);
}

/*DESK*/
@media only screen and (min-width: 720px) and (max-width: 1700px) {
  .brand {
    width: 50%;
    height: auto;
    margin-top: 2em;
  }
  .bottom-nav {
    display: none;
  }
  .bn-content {
    display: none;
  }
}

/*TABLET*/
@media only screen and (min-width: 720px) and (max-width: 1000px) {
  .brand {
    width: 70%;
    height: auto;
    margin-top: 4em;
  }
  .bottom-nav {
    display: none;
  }
  .bn-content {
    display: none;
  }
}
/*PHONE*/
@media only screen and (min-width: 0px) and (max-width: 720px) {
  .brand {
    width: 85%;
    height: auto;
    margin-top: 5em;
    margin-bottom: 2em;
  }
  .bottom-nav {
    position: absolute;
    display: flex;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
    padding: 1em;
    background-color: var(--primary);
    justify-content: space-evenly;
    border: 1px solid var(--secondary);
  }
  .bn-content {
    height: var(--bottom-nav);
    width: var(--bottom-nav);
  }
}
