body {
  color: #4f4f4f;
}

.greyfont {
	color: #4f4f4f;
}

.pageTemplate {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.pageBottom {
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}

.cardViewHeader {
  text-align: center;
  margin: 1.25em 15vw 1.25em 15vw;  
}

.cardViewContent {
  justify-content: center;
  margin: 0 2vw 0 2vw;
}

#aboutPage, #indexPage {
  gap: 5vw;
  justify-items: center;
  margin: 5vw;
  display: grid;
  grid-template-columns: 3fr 5fr;
}

.card {
  border: none;
}

.galleriesCard, .printsCard {
  text-align: center;
  width: 300px;
}

.galleriesCardHeader{
  text-align: center;
  font-weight: bold;
  background-color: transparent;
  border: none;
}

.galleriesCardImage, .printsCardImage {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  height: 120px;
}

.galleryCard, .studioShopCard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
}

.galleryImage, .studioShopImage {
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.centerbutton {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.paintingCard {
  text-align: left;
  width: 300px;
}

.paintingImage {
  width: 260px;
  height: 260px;
  object-fit: cover;
  margin: 0 0 1em 0;
}

.modal {
  text-align: center;
}

.modal-dialog {
  text-align: left;
  max-width: 100%;
  width: auto !important;
  display: inline-block;
}

.dropdown-toggle:hover {
  font-weight: bold;
}

.nav-link:hover {
  color: #4f4f4f;
  text-decoration:none;
  border: none;
  font-weight: bold;
}

.dropbtn {
  background-color: transparent;
  color: #4f4f4f;
  padding: 10px;
  font-size: 16px;
  border: transparent;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 180px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {font-weight: bold;}

#contactPage {
  gap: 5vw;
  justify-items: center;
  margin: 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contactForm {
  min-width: 500px;
}

#formName {
  width: 100%;
  padding: 0.5em 0.5em 0.2em 0.5em;
  border: none;
  border-bottom: 1px solid #4f4f4f;
}

#formEmail {
  width: 100%;
  padding: 0.5em 0.5em 0.2em 0.5em;
  border: none;
  border-bottom: 1px solid #4f4f4f;
}

#formComments {
  width: 100%;
  resize: none;
  margin: 1.5em 0em 1.5em 0em;
  padding: 0.5em 0.5em 0.2em 0.5em;
  border: 1px solid #4f4f4f;
}

#formSubmit {
  
  width: 100%;
  resize: none;
  padding: 0.5em 0.5em 0.2em 0.5em;
  background-color:#dee2e6;;
  border: none;
  border-radius: 5px;
}

#contactMsgPages {
  justify-items: center;
  margin: 5vw;
  display: grid;
  grid-template-columns: 1fr;
}