html, body {
  background: #695CB8;
  color: #CECAE8;
  font-family: Menlo, Consolas, Monaco, monospace;
}

section {
  padding: 96px 12px;
}

h1 {
  color: #fff;
  font-weight: 800;
}

h2 {
  font-size: 27px;
}

button {
  background: #85E8E4;
  color: #222;
  font-weight: 800;
  filter: drop-shadow(0px 1px 28px #58B4DF);
  border: 6px solid rgba(0,0,0,0);
  line-height: 21px;
}

button:hover {
  cursor: pointer;
  filter: drop-shadow(0px 1px 36px #58B4DF);
  border: 6px solid rgba(255,255,255,.75);
}

button:active {
  filter: drop-shadow(0px 1px 26px #58B4DF);
  border: 6px solid rgba(255,255,255,.35);
}

.banner {
  padding: 12px 0;
  text-align: center;
  background: #85E8E4;
  color: #111;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.hero-btn {
  margin-top: 42px;
  padding: 16px 24px; 
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  margin-right: 18px;
  line-height: 25px;
  max-width: 420px;
}

.hero-content h1 {
  line-height: 36px;
}

.info-header {
  border-top: 1px solid #85E8E4;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 32px 0 96px 0;
}

.info-header-content {
  position: absolute;
  top: -10px;
  z-index: 1;
  background: #695CB8;
  text-transform: uppercase;
  padding: 4px 12px;
  color: #85E8E4;
  margin-bottom: 32px;
  font-weight: 800;
  font-size: 14px;
}

.hero-image {
  width: 220px;
  height: 220px;
  background: #fafafa;
  animation-delay: 2s;
}

.info-image {
  margin-top: 64px;
}

.bt-c {
  border-top: 1px solid #85E8E4;
}

.col-1 {
  width: 33.33%;
}

.col-2 {
  width: 66.66%;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}


.row {
  display: flex;
}

.info-bit {
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  padding: 32px 0 64px 0;
}

.info-bit::before {
  display: block;
  background: #85E8E4;
  height: 4px;
  width: 16px;
  content: " ";
  position: absolute;
  left: 0;
  top: -4px;
}

.info-bit div:first-child {
  color: #C27AAF;
  margin-bottom: 12px;
}

.info-bit div:nth-child(2) {
  color: #FDEC8B;
}



.directory h2 {
  margin: 32px 0 27px 0;
}

.directory .group {
  margin-bottom: 64px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
}

.directory .group label {
  font-weight: 800;
}

.directory img {
  height: auto;
  background: #fff;
  margin-top: 12px;
}

.directory label {
  margin-top: 8px;
  margin-bottom: 4px;
  display: block;
}





@media screen and (max-width: 440px) {
  .hero {
    display: block;
  }

  .hero img {
    display: none;
  }

  .info-bits {
    display: block;
  }

  .row.info-bits-1 {
    display: none;
  }
}

@media screen and (max-width: 590px) {
  .hero img {
    width: 40%;
  }


  .directory .group {
    grid-column-gap: 21px;
    grid-template-columns: 1fr 1fr;
  }
}