a {
  text-decoration: none;
}

p {
  font-weight: 300;
}

strong {
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}

h3 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 40px;
}

.alert {
  margin: 30px 0;
}

.bg-gray {
  background-color: #f0f0f0;
}

.text-gray {
  color: #f0f0f0;
}

.custom-shadow {
  margin-bottom: 3px;
  box-shadow: 0 0 3px 1px grey;
}

.hoverable {
  transition: background-color 0.25s, transform 0.25s;
}

.hoverable:hover {
  background-color: #f0f0f0;
  transform: translateY(-10px);
  cursor: pointer;
}
