body {
  margin: 0 auto;
  height: 100vh;
  overflow: hidden;
}

/* Containers */

.black-container {
  background-color: #fff;
  color: #000;
}

.flex-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-inner {
  padding: 15px;
}

.centered-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container img {
  max-width: 100%;
}

/* Texts */

h1, p:not(.image-container) {
  max-width: 700px;
}

h1,
p {
  color: #000;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: normal;
}
p {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 300;
}
p.small-text {
  font-size: 15px;
}
p.bold {
  font-weight: normal;
}

.primary, a {
  color: #DD4511;
  text-decoration: none;
}
a:hover {
  color: #000;
}
