@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  max-width: 1440px;
  height: 100vh;
  margin: 0 auto;
  font-family: "Rubik", sans-serif;
  line-height: 2em;
  color: #a39daa;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;
  }
}

.phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 580px;
  z-index: 2;
  padding: 1em 0.5em;
  background-color: white;
  border-radius: 30px;
  -webkit-box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 768px) {
  .phone {
    width: 280px;
    height: 580px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 425px) {
  .phone {
    width: 230px;
    height: 500px;
    margin: 0 auto;
  }
}
.phone__display {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #f5f3f7;
  border-radius: 15px;
  overflow: hidden;
}
.phone__cam {
  position: absolute;
  width: 80%;
  height: 19px;
  z-index: 10;
  background-color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.phone__content {
  width: 100%;
  height: 80%;
  padding: 0.5em;
}
.phone__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10%;
  padding: 0 0.5em;
}

.app__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding-top: 2em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-bottom: 1em;
  width: 100%;
  height: 10%;
  z-index: 1;
  color: white;
  border-radius: 10px;
  background: linear-gradient(90deg, #e942ff 0%, #8838ff 100%);
  -webkit-box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 15px 0 30px 0 rgba(0, 0, 0, 0.12);
}
.app__head__notificationInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.app__head__notificationInfo__profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  padding-right: 0.5em;
}
.app__head__notificationInfo__profile > img {
  padding: 0;
  margin: 0;
  height: 1.5em;
  width: 1.5em;
  border: 2px solid white;
  border-radius: 100%;
}
@media only screen and (max-width: 768px) {
  .app__head__notificationInfo__profile > img {
    height: 1.5em;
    width: 1.5em;
  }
}
.app__head__notificationInfo__description {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.app__head__notificationInfo__description > span {
  color: #d89eff;
  font-size: 0.6em;
  line-height: 1em;
}
.app__head__notificationInfo__description h3 {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 0.8em;
  line-height: 1.2em;
}

.message {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5em;
}
.message.guess {
  justify-content: flex-start;
  color: #9241c8;
}
.message.guess > p {
  padding: 0.8em;
  width: auto;
  max-width: 60%;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  background-color: rgba(216, 158, 255, 0.25);
}
.message.local {
  justify-content: flex-end;
  color: #3e2753;
}
.message.local > p {
  padding: 0.5em;
  width: auto;
  max-width: 60%;
  border-radius: 15px;
  border-bottom-right-radius: 0;
  background-color: white;
}
.message > p {
  font-size: 0.6em;
  line-height: 1.2em;
}
.message .img-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 60%;
}
.message .img-group > img {
  width: 33%;
  height: auto;
  border-radius: 15px;
}
.message .img-group > img:not(:last-child) {
  margin-right: 0.5em;
}
.message .price__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2em 0.5em;
  width: auto;
  min-width: 60%;
  color: white;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  background: linear-gradient(90deg, #e942ff 0%, #8838ff 100%);
}
@media only screen and (max-width: 768px) {
  .message .price__group {
    min-width: 80%;
  }
}
.message .price__group p {
  width: 80%;
  font-size: 12px;
  line-height: 20px;
  padding-left: 0.5em;
  color: rgba(255, 255, 255, 0.7);
}
.message .price__group h4 {
  width: 20%;
  color: white;
  line-height: 1;
}

i {
  padding: 0.5em;
}

span {
  font-size: 0.8em;
}

h1 {
  font-weight: 500;
  color: #3e2753;
}

h2 {
  font-weight: 500;
  color: #3e2753;
}

h3 {
  font-weight: 500;
  color: #3e2753;
}

h4 {
  font-weight: 500;
  color: #3e2753;
}

h5 {
  font-weight: 500;
  color: #3e2753;
}

h6 {
  font-weight: 500;
  color: #3e2753;
}

.input-group {
  display: flex;
  width: 100%;
  padding: 0.5em;
  padding-left: 1em;
  background-color: white;
  border-radius: 25px;
}
.input-group > input {
  width: 90%;
  border: none;
  margin-right: 1em;
}
.input-group > input::placeholder {
  color: #a39daa;
}

.input-Button {
  padding: 0.5em;
  width: 2em;
  height: 2em;
  color: white;
  background-color: #3e2753;
  border: none;
  border-radius: 100%;
}
.input-Button > i {
  padding: 0;
  margin: 0;
}

.background1 {
  position: absolute;
  width: 20%;
  height: 80vh;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-bottom-left-radius: 250px;
  background: linear-gradient(0deg, #8838ff 0%, #e942ff 100%);
  border-bottom-right-radius: 250px;
}
@media only screen and (max-width: 768px) {
  .background1 {
    width: 50%;
    height: 50vh;
    flex-direction: column;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 250px;
  }
}

.background2 {
  position: absolute;
  width: 20%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(216, 158, 255, 0.2);
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
}
@media only screen and (max-width: 768px) {
  .background2 {
    display: none;
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    width: 100%;
  }
}
.content .col {
  width: 100%;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  .content .col {
    text-align: center;
  }
}
.content .col h1 {
  margin-bottom: 1em;
}

.attribution {
  font-size: 12px;
}
.attribution a {
  color: #c48f33;
  text-decoration: none;
}
.attribution a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
