* {
  font-family: "Jost", sans-serif;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
}

.wrapper {
  width: 100vw;
  min-height: 100vh;
  background-image: url(/assets/glasses-bg.png);
  background-repeat: repeat;
  background-size: 260px 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #d3d3d3;
}

.container-card {
  max-width: 600px;
  width: 100%;
  background-color: #c7b1aa;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-wrapper {
  margin: 1rem;
  border: 1px solid #fff;
  padding: 2rem;
  text-align: center;
  padding-bottom: 0;
}

.title {
  display: block;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.content-wrapper h1 {
  color: #fff;
  font-weight: 300;
  font-size: 4.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 4px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.content-wrapper p {
  margin: 0 auto;
  color: #fff;
  font-weight: 300;
  max-width: 400px;
  text-align: center;
  margin-bottom: 1rem;
}

.chat-btn {
  padding: 1rem 2rem;
  background-color: #000000;
  color: #ffffff;
  font-weight: 300;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  margin-bottom: 2rem;
}

.chat-btn:hover {
  border: 2px solid #ffffff;
}

.chat-btn svg {
  height: 1.5rem;
  margin-right: 1rem;
  width: auto;
  fill: #fff;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px dashed #ffffff;
  color: #ffffff;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links svg {
  height: 20px;
  width: auto;
  margin-left: 1rem;
  fill: #ffffff;
}

/* MOBILE */
@media only screen and (max-width: 600px) {
  .content-wrapper h1 {
    font-size: 3rem;
  }
}
