body {
  background-color: #141414;
  color: #e0e0e0;
  font-family: "Montserrat", light;
}

.horizontalFlex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.verticalFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.horizontalFlexItem {
  margin: 0 3rem;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}
.horizontalSeparator {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 1rem 0;
}
.courseButton {
  background-color: #e0e0e0;
  text-decoration: none;
  color: #141414;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
  padding: 1rem 1rem;
  max-width: 200px;
  text-align: center;
}

.courseButtonCharcoal {
  background-color: #141414;
  text-decoration: none;
  color: #e0e0e0;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
  padding: 1rem 1rem;
  max-width: 200px;
  text-align: center;
}

.courseButton:hover {
  background-color: #141414;
  color: #e0e0e0;
  box-shadow: 0px 0px 0px 3px rgba(224, 224, 224, 1) inset;
  -webkit-box-shadow: 0px 0px 0px 3px rgba(224, 224, 224, 1) inset;
  -moz-box-shadow: 0px 0px 0px 3px rgba(224, 224, 224, 1) inset;
  cursor: pointer;
}

.courseButton:hover a {
  color: #e0e0e0;
}

.courseButtonCharcoal:hover {
  background-color: #e0e0e0;
  color: #141414;
  box-shadow: 0px 0px 0px 3px #141414 inset;
  -webkit-box-shadow: 0px 0px 0px 3px #141414 inset;
  -moz-box-shadow: 0px 0px 0px 3px #141414 inset;
  cursor: pointer;
}

.courseButtonCharcoal:hover a {
  color: #141414;
}

.creamText {
  color: #e0e0e0;
}
.charcoalText {
  color: #141414;
}

a {
  text-decoration: none;
}

.courseCard {
  background-color: #e0e0e0;
  color: #141414;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  min-height: 500px;
  min-width: 300px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.courseImage {
  width: 200px;
  height: 200px;
  margin: 1rem 0;
}
