/*Colors*/
.box-shadow {
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 18px;
}
p {
  line-height: 1.46em;
  margin-bottom: 1em;
}
a {
  color: #1976d3;
  text-decoration: underline;
  font-weight: bold;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #0e4378;
}
h1,
h2,
h3 {
  font-weight: 700;
  margin: 0;
}
h1 {
  color: #8bc24a;
  font-size: 1.6em;
}
h2 {
  color: #8bc24a;
  font-size: 1.2em;
}
h3 {
  font-size: 1.2em;
}
.container {
  width: 80%;
  max-width: 900px;
  height: 80%;
  max-height: 900px;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
  margin: 20px auto;
  padding: 20px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 80px;
  }
}
.grid div {
  align-self: center;
}
p.intro {
  font-weight: 300;
  font-size: 1.2em;
}
