:root {
  /* Theme colors */
  --body-bg: #bcbcbb;
  --body-fg: #302a2a;
  --menu-bg: #bcbcbb;
  --menu-underscore: #21647C;
  --menu-fg: white;
  --menu-visited: #6ab5eb;
  --primary: #00162E;
  --notice-font:"Hedvig Letters Serif", serif;
  --header-font:"Junge", cursive;
  --body-font:"Patrick Hand", cursive;
}

.hidden {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3 {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 1.3rem;
}
@media screen and (min-width: 966px) {
  h1 {
    font-size: 1.6rem;
  }
}

body {
  background-color: #E0E0E0;
  font-size: 1em;
  margin: 0;
  font-family: "Mukta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#body-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 966px) {
  #body-wrap {
    flex-direction: row;
    max-width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

#masthead {
  background-color: var(--menu-bg);
  color: var(--primary);
  box-shadow: 0 3px 4px 1px #333;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media screen and (min-width: 966px) {
  #masthead {
    position: unset;
    top: unset;
    box-shadow: 0px 2px 6px 3px #242424;
  }
}

.menu-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: 86%;
}
@media screen and (min-width: 966px) {
  .menu-header {
    flex-direction: row;
    margin: 0 7%;
  }
}

.logo {
  max-width: 100%;
  max-height: 85px;
}
@media screen and (min-width: 966px) {
  .logo {
    max-height: unset;
  }
}

.logoLink {
  margin: 0 20px;
}
@media screen and (min-width: 966px) {
  .logoLink {
    flex: 1;
  }
}

@media screen and (min-width: 966px) {
  .site-header {
    flex: 0 0 300px;
    z-index: 1;
    overflow: auto;
  }
}

.page-bkgd {
  background-color: #D6D6D6;
  flex: 1;
  position: relative;
}
@media screen and (min-width: 966px) {
  .page-bkgd {
    background-color: #f0f0f0;
  }
}

.page {
  border: 2px solid #333;
  background-color: #E0E0E0;
  margin: 15px;
  box-shadow: 2px 2px 9px 3px #555;
}
@media screen and (min-width: 966px) {
  .page {
    position: absolute;
    min-height: 70%;
    box-shadow: unset;
    max-width: 80%;
    min-width: 80%;
  }
}

.page[data-page="0"] {
  display: none;
}

@media screen and (min-width: 966px) {
  .page[data-page="2"], .page[data-page="3"], .page[data-page="4"] {
    background-color: var(--menu-bg);
  }
  .page[data-page="1"] {
    z-index: 30;
    left: 3%;
    box-shadow: 0 3px 12px -1px #111;
  }
  .page[data-page-rev="3"] {
    top: 105px;
  }
  .page[data-page-rev="3"] {
    top: 10%;
  }
  .page[data-page="2"] {
    z-index: 20;
    left: 6%;
  }
  .page[data-page-rev="2"] {
    top: 67px;
  }
  .page[data-page-rev="2"] {
    top: 6%;
  }
  .page[data-page="3"] {
    z-index: 10;
    left: 9%;
  }
  .page[data-page-rev="1"] {
    top: 2%;
  }
  .page[data-page="4"] {
    z-index: 5;
    left: 12%;
  }
  .page[data-page-rev="4"] {
    top: 14%;
  }
}
.page-header {
  display: flex;
  justify-content: space-between;
  padding: 4px 20px;
}

.maximized-page {
  width: 97% !important;
  height: 97% !important;
  top: 0 !important;
  left: 0 !important;
  max-width: unset;
}

.windowPanel {
  display: flex;
  flex-direction: row;
}

.minimizeButton, .maximizeButton {
  display: none;
}
@media screen and (min-width: 966px) {
  .minimizeButton, .maximizeButton {
    display: block;
  }
}

#mobileTest {
  display: none;
}
@media screen and (min-width: 966px) {
  #mobileTest {
    text-align: center;
  }
}

.windowButton {
  background-color: inherit;
  color: inherit;
  border: none;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navy-header {
  color: white;
  background-color: #4B4FB1;
}

.yellow-header {
  color: black;
  background-color: #F8BF81;
}

.purple-header {
  color: white;
  background-color: #765796;
}

.green-header {
  color: white;
  background-color: #2D7E30;
}

.bright-green-header {
  color: black;
  background-color: #7DDB51;
}

.page-body {
  padding: 15px 15px;
  border-top: 2px solid black;
  font-size: 1.1rem;
}

#header {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 7px 10px;
  background-color: var(--menu-bg);
  color: var(--menu-fg);
}
@media screen and (min-width: 966px) {
  #header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.header-body {
  display: none;
}
@media screen and (min-width: 966px) {
  .header-body {
    display: block;
  }
}

@media screen and (min-width: 966px) {
  .menu-burger {
    display: none;
  }
}

#mobileButton {
  font-size: 35px;
  background-color: var(--menu-bg);
  border: none;
  width: 60px;
  align-self: flex-end;
  position: absolute;
  top: 5px;
  right: 0;
}
@media screen and (min-width: 966px) {
  #mobileButton {
    display: none;
  }
}

.menu-header h2 {
  font-size: 26px;
  flex: 1.2;
}

#site-navigation {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 966px) {
  #site-navigation {
    min-height: 100vh;
  }
}

.menu-footer {
  display: none;
}
@media screen and (min-width: 966px) {
  .menu-footer {
    display: flex;
    margin: 0 20px 20px 0;
    align-self: flex-end;
    align-items: center;
    gap: 10px;
  }
}

#footer {
  display: block;
}
@media screen and (min-width: 966px) {
  #footer {
    display: none;
  }
}

#mobile-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
}
@media screen and (min-width: 966px) {
  #mobile-footer {
    display: none;
  }
}

hr {
  height: 3px;
  background-color: var(--menu-underscore);
  font-size: 0;
  border: 0;
  width: 88%;
}

.menuLink {
  margin-left: 10%;
  padding: 12px 0;
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gig-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 85%;
  margin: 0 auto;
}

.form-input {
  color: var(--primary);
  background-color: var(--menu-bg);
  margin: 5px 0;
  border: none;
}

.form-input::placeholder {
  color: #222;
  font-weight: bold;
}

textarea.form-input {
  height: 4em;
  border: 2px solid black;
}

input.form-input {
  border-bottom: 2px solid #111;
}

#uploadedImages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: 1fr;  100px;  */
  gap: 10px;
  margin-top: 10px;
}

.imageUpload {
  position: relative;
  height: 100px;
  width: 80px;
}

.button-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu-button {
  /* background-color: var(--btn-bkgd); */
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  width: 78%;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  margin: 6px 5px;
}

#menuLinks {
  display: none;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (min-width: 966px) {
  #menuLinks {
    display: flex;
  }
}

.contact-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 10px;
}
@media screen and (min-width: 966px) {
  .contact-links {
    flex-direction: column;
    margin: 0;
  }
}

.majorLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 5px 10px 5px;
}
@media screen and (min-width: 966px) {
  .majorLink {
    width: 90%;
    margin: 0 0 10px 0;
  }
}

.majorLink a {
  padding: 12px 0;
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.majorLink img {
  width: 50px;
  height: 35px;
  display: inline-block;
}

.emailLink img {
  width: 40px;
}

/*
.phoneLink:before{
  background-image: url('/icons/cell-phone.svg');
}

.emailLink:before{
  background-image: url('/icons/email.svg');
} */

/*# sourceMappingURL=index.css.map */
