/* MAKES THE BUTTONS FOR THE MOBILE NAV PAGE */

.mobile-nav {
  text-align: center;
  margin-top: 8px;
  background-color: var(--fg-color);
  padding: 10px;
  border-radius: 5px;
  border: 2px solid var(--accent-color);
  width: 100%;
}

.mobile-nav h3{
  font-family: var(--header-font);
  color: var(--accent-color);
  font-weight: bold;
  border-bottom: solid 2px var(--accent-color);
  margin-bottom: 10px;
  display: inline;
  font-size: 2rem;
}

.mobile-nav ul{
    list-style-type: none;
    margin: 8px 0px 0px 0px;
}

.mobile-nav a{
  color: var(--accent-color);
  text-decoration: none;
}

.mobile-nav a:hover{
  background-color: white;
  transition-duration: .5s;
}

.mobile-button {
  text-align: center;
  margin-bottom: 40px;
  background-color: var(--fg-color);
  padding: 10px;
  border-radius: 5px;
  border: 2px solid var(--accent-color);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.mobile-button h3{
  font-family: var(--main-font);
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 10px;
  display: inline;
  text-decoration: none;
}

.mobile-button:hover{
  background-color: white;
  transition-duration: .5s;
}

.mobile-button {display: none; visibility: hidden;}