* {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.image {
  width: 100%;
}

.container {
  max-width: 1062px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.container * {
  color: white;
}
@media (max-width: 1100px) {
  .container {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
}

.text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333333;
  flex-direction: column;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media (max-width: 1100px) {
  .text-wrap {
    padding: 50px 0;
  }
}

a {
  text-decoration: none;
}

h1 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 34px;
  border-bottom: 1px solid #707070;
}

p {
  padding-top: 28px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */