
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Menu */
.bg-dark {
  background-color: #603c96 !important; /*#3C5896 !important;*/
}

.navbar {
  position: fixed;
  width: 100%;
  font-size: 15px;
}

.logo, .navbar-brand {
  width: 2em;
  height: auto;
}

.logo {

  filter: invert(97.5%);
}

.banner-image {
    padding-top: 65px;
}

.page {
  padding-left: 20px;
  padding-right: 20px;
  min-height: calc(100vh - 5vh); /*The second term is the height of the footer. The min-height makes it so every page fills up the page. Even if the page is blank.*/
  font-family: "Times New Roman";
  background-color: #fff5db;
  text-align: center;
}

.banner-image {
  width: 100%;
  height: auto;
}

#selector {
  background-color: #FFFFFF;
  border-radius: 5px;
}

p {
  font-size: 20px;
}

#submit {
  padding-left: 5px;
  padding-right: 5px;
  background-color: #603c96;
  color: #FFFFFF;
  border-radius: 5px;
}

h1 {
font-size: 60px;
}

h1, h2 {
  font-family: 'Tangerine', cursive;
}

h2 {
  text-align: center;
  font-size: 40px;
}

.people, .spells {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#wizard-results {
  margin-top: 10px;
}

.people-card, .spell-card {
  margin: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.info-name {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  background-color: #603c96;
  border: 2px solid black;
  border-bottom: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.info {
  width: 100%;
  padding: 4px;
  background-color: #F7F7F7;
  border: 2px solid black;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.footer {
  min-height: 5vh;
  background-color: #603c96;
  color: #FFFFFF;
  text-align: right;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 1vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.credit {
  font-size: 8px;
}

.footer-link, .footer-link:hover {
  color: #FFFFFF;
}


/* Mobile Styles */
@media only screen and (max-width: 500px) {



}

/* Tablet Styles */
@media only screen and (min-width: 501px) and (max-width: 960px) {
  .people-card, .spell-card {
    width: 45%;
  }

}

/* Larger Tablet Styles */
@media only screen and (min-width: 775px) and (max-width: 960px) {
  .people-card, .spell-card {
    width: 30%;
  }
}

/* Small Desktop Styles */
@media only screen and (min-width: 961px) {
  .people-card, .spell-card {
    width: 20%;
  }

}

/* Large Desktop Styles */
@media only screen and (min-width: 1300px) {
  .people-card, .spell-card {
    width: 22%;
  }

}
