@import "../styles/base-variables";

.titleBlock {
  margin-top: 4em;
  margin-bottom: 4em;

  h1 {
    font-family: "Indie Flower", sans-serif;
    font-size: 3.5em;
    font-weight: 300;
    margin: 0.5em 0;
    color: lighten($primary-color, 7);
  }

  h2 {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }

  h3 {
    background-image: linear-gradient(to left, #de5044, #de5044, #4f93f4, #1ea666, #1ea666); /* Standard syntax; must be last */
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.blurbBlock {
  padding: 1em;
  text-align: center;
  margin-bottom: 2em;
}

.googleCloud {
  background-image: linear-gradient(to right, #de5044, #de5044, #f5bc2b, #1ea666, #1ea666); /* Standard syntax; must be last */
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: pre;
}

.subtext {
  font-weight: 300;
  color: #687f86;
  margin-bottom: 1em;
  font-size: 0.8em;
}

.imageBlockOuter {
  display: block;
  width: 100%;
  max-width: 234px;
  position: relative;
  margin: 0.5em;
}

.imageBlock {
  height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 66%;

  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
}

.simpleExample {
  width: 100%;
  margin-top: 1em;
  text-align: center;

  h2:global.special-header {
    display: inline-block;
    margin: 0.5em auto;
    padding: 0.25em 0;
    font-weight: 100;
    border-bottom: 1px solid rgba(grey, 0.6);
    font-size: 2.5em;
    text-align: center;
    text-transform: uppercase;
  }
}