* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  font-family: 'Google Sans Text', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  min-height: 100vh;
  color: #5f6368;
}
h1 {
  color: #202124;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;

  @media (min-width: 1024px) {
    font-size: 2.5rem;
  }
  @media (min-width: 1440px) {
    font-size: 3rem;
  }
}
p + p {
  margin-top: 16px;
}
a,
a:visited {
  color: #1967d2;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: #174ea6;
  text-decoration: underline;
}
header {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
}
a.logo {
  border-radius: 4px;
  display: inline-block;
  padding: 10px;
}
a.logo:hover {
  background: #f8f9fa;
}
.mobileButton,
a.cta {
  background: #1a73e8;
  border-radius: 24px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
}
.mobileButton:hover,
a.cta:hover {
  background: #1967d2;
}
.mobileButton {
  display: none;
}
.mobileButton.mobile {
  display: block;
  border: none;
  margin: 32px auto 0;
  max-width: 400px;
}
img {
  vertical-align: top;
}
main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 32px auto 0;
  width: 1024px;
}
.grid-50 {
  flex-basis: 50%;
}
@media screen and (max-width: 1024px) {
  .grid {
    display: none;
  }
}
.portalLink {
  margin: 32px 0;
  display: inline-block;
}