html, body {
  height: 100%;
}

body {
  background: #100D12;
  color: #E5E0E8;
  font-family: "Roboto", sans-serif;
  padding: 1rem;
}
@media (min-width: 768px) {
  body {
    padding: 0rem;
  }
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2, .h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 3rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 2.25rem;
  }
}

h4, .h4 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}
h4.left, .h4.left {
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 2rem;
  }
}

small {
  display: block;
  color: #adb5bd;
  margin-top: 0.5rem;
}

header {
  padding: 1rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  header {
    padding: 1.25rem 0 0;
  }
}
@media (min-width: 768px) {
  header {
    padding: 1.5rem 0 0;
  }
}
@media (min-width: 992px) {
  header {
    padding: 2.25rem 0 0;
  }
}
@media (min-width: 1200px) {
  header {
    padding: 2.75rem 0 0;
  }
}
header img {
  max-width: 150px;
  width: 100%;
}
@media (min-width: 768px) {
  header img {
    max-width: 200px;
  }
}
header nav {
  display: none;
}
@media (min-width: 768px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header nav ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
  padding: 0;
}
header nav ul li {
  margin: 0 0.5rem;
}
@media (min-width: 992px) {
  header nav ul li {
    margin: 0 1.5rem;
  }
}
header nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
}

main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
main a {
  color: #06BAB4;
}
main section {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  main section {
    padding: 4rem 2.5rem;
  }
}
main section:nth-child(even) {
  background: #1E1B20;
}
main section .intro {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  main section .intro {
    margin-bottom: 3.5rem;
  }
}
main section .appstore {
  color: #adb5bd;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  main section .appstore {
    margin-top: 5rem;
    margin-bottom: 0;
  }
}
main section .appstore img {
  opacity: 0.2;
  max-width: 150px;
  width: 100%;
}
main section .chat {
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
  height: clamp(280px, 60vh, 720px);
  width: 300px;
  background-color: #000;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
@media (min-width: 768px) {
  main section .chat {
    height: clamp(380px, 50vh, 700px);
  }
}
main section .chat .messages {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  position: absolute;
}
main section .chat .messages .message {
  border-radius: 20px;
  padding: 8px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
main section .chat .messages.yours {
  align-items: flex-start;
}
main section .chat .messages.yours .message {
  background-color: #eee;
  color: #1E1B20;
  margin-right: 25%;
  position: relative;
}
main section .chat .messages.yours .message:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -7px;
  height: 20px;
  width: 20px;
  background: #eee;
  border-bottom-right-radius: 15px;
}
main section .chat .messages.yours .message:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -10px;
  width: 10px;
  height: 20px;
  background: #000;
  border-bottom-right-radius: 10px;
}
main section .chat .messages.mine {
  align-items: flex-end;
}
main section .chat .messages.mine .message {
  color: white;
  margin-left: 25%;
  background: #007AFF;
  background-attachment: fixed;
  position: relative;
}
main section .chat .messages.mine .message:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -8px;
  height: 20px;
  width: 20px;
  background: #007AFF;
  background-attachment: fixed;
  border-bottom-left-radius: 15px;
}
main section .chat .messages.mine .message:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -10px;
  width: 10px;
  height: 20px;
  background: #000;
  border-bottom-left-radius: 10px;
}
main section .chat .messages.end {
  align-items: flex-center;
}
main section .chat .messages.end .message {
  background-color: #D50B92;
  color: white;
  margin-right: 25%;
  position: relative;
  text-align: left;
}
main section .chat .messages.end .message:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -7px;
  height: 20px;
  width: 20px;
  background: #D50B92;
  border-bottom-right-radius: 15px;
}
main section .chat .messages.end .message:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -10px;
  width: 10px;
  height: 20px;
  background: #000;
  border-bottom-right-radius: 10px;
}
main section .pricing .pricing-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2.5rem;
}
main section .pricing .pricing-points .item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
main section .pricing .pricing-points .item:last-child {
  gap: 20px;
}
main section .pricing .pricing-points .item:last-child .bullet {
  width: 40px;
  height: 40px;
}
main section .pricing .pricing-points .item:last-child .bullet img {
  margin-top: 5px;
  width: 40px;
}
main section .pricing .pricing-points .item .bullet {
  width: 20px;
  height: 20px;
}
main section .pricing .pricing-points .item .bullet img {
  margin-top: 5px;
  width: 30px;
}
main section .pricing .pricing-points .item .text {
  font-size: 1.75rem;
  line-height: 2.5rem;
  margin-left: 0.5rem;
}
main section .pricing .pricing-points .item .text .indent {
  margin-left: 2rem;
}
main section .pricing .pricing-points .item .text .emphasis {
  font-weight: 700;
  text-transform: uppercase;
}
main section .pricing p {
  font-size: 1.125rem;
  line-height: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  main section .pricing p {
    text-align: left;
  }
}
main section .contact {
  max-width: 100%;
  margin-top: 2.75rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  main section .contact {
    max-width: 600px;
  }
}
main section .contact p {
  font-size: 1.5rem;
  margin-bottom: 2.75rem;
}
@media (min-width: 768px) {
  main section .contact p {
    font-size: 1.25rem;
  }
}

footer {
  color: #adb5bd;
  font-size: 0.875rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2rem;
}
footer a {
  color: #857E8A;
}

.accent {
  color: #06BAB4;
}

.btn-primary {
  background: #D50B92;
  border: none;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  padding: 1.1rem 1rem 1rem;
}
.btn-primary:hover {
  background: #a50871;
}
.btn-primary.signup {
  padding: 0.8rem 0.75rem 0.75rem;
  line-height: 1;
}

.btn-accent {
  background: #0D7D79;
  border: none;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  padding: 1.1rem 1rem 1rem;
}
.btn-accent:hover {
  background: #084f4c;
}

.primary {
  color: #F100A1;
}

.w-limit {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.w-limit-900 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}/*# sourceMappingURL=styles.css.map */