html {
  font-family: "Readex Pro", sans-serif;
  color: #595959;
}

body {
  display: grid;
  height: 100vh;
  overflow: hidden;
  align-content: center;
}

.container {
  text-align: center;
  max-width: 700px;
  display: grid;
  margin-inline: auto;
}

.logo {
  grid-row: 1;
  margin-bottom: 50px;
}
.logo img {
  max-width: 270px;
}

.icon {
  position: relative;
  width: 100%;
  height: 80px;
}
.icon::after {
  content: "";
  width: 50%;
  height: 1px;
  right: 0;
  top: 50%;
  background-color: #bdbdbd;
  position: absolute;
}
.icon::before {
  content: "";
  width: 50%;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #bdbdbd;
  position: absolute;
}
.icon .icon-img {
  position: absolute;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  grid-row: 2;
  background-color: white;
  margin-bottom: 50px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #bdbdbd solid 1px;
  margin-inline: auto;
}
.icon .icon-img img {
  max-width: 50%;
}

.text {
  grid-row: 3;
}
.text h2 {
  margin-bottom: 1rem;
}
.text p {
  color: #858585;
}/*# sourceMappingURL=style.css.map */