:root {
  --text-color: whitesmoke;
  --button-bg: #2f4f4f;
  --button-hover: #2f2f4f;
  --important-bg: #4f4f2f;
  --important-hover: #4f2f4f;
}

body {
	font-family: 'Montserrat', sans-serif;
}

.title, .subtitle {
  color: var(--text-color) !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.title.is-1 {
  font-size: 6rem !important;
}

.title.is-2 {
  font-size: 3rem !important;
}

.subtitle.is-2 {
  font-size: 3rem !important;
}

.label {
  display: block;
}

a {
	color: var(--text-color) !important;
}

a:not(.button):hover {
	text-decoration: underline;
}

figure {
    display:inline-block;
   	margin: 20px;
}

.button {
  background-color: var(--button-bg);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
  transition: background-color 0.25s;
  padding: 0.75rem 1.5rem;
}

.button:hover {
  background-color: var(--button-hover);
  color: var(--text-color);
}

.button.is-important {
  background-color: var(--important-bg);
}

.button.is-important:hover {
  background-color: var(--important-hover);
}