@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Silkscreen:wght@400;700&display=swap");

body {
  padding: 0;
  margin: 0;
}

.header {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  height: 100vh;
  justify-content: center;
  background-color: #eee7da;
}

.header .head {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  height: 500px;
  width: 300px;
  background-color: #f3f8ff;
  border: solid rgb(189, 189, 189) 5px;
  border-radius: 15px 15px 0 0;
}

.header .head .p-Wrapper {
  height: 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.header .head .p-Wrapper p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  max-width: 80%;
}

.header .head .emojis-Wrap {
  height: 50%;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header .head .emojis-Wrap .emoji-Card {
  display: flex;
  flex-direction: column;
  height: 90px;
  width: 90px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #eee7da;
  cursor: pointer;
  transition: all 100ms ease-in-out;
  border-radius: 5px;
}

.header .head .emojis-Wrap .emoji-Card i {
  color: yellow;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  font-size: 35px;
  padding: 0;
  margin: 0;
}

.header .head .emojis-Wrap .emoji-Card h3 {
  font-size: 15px;
  padding: 0;
  margin: 2px;
  font-family: "Roboto", sans-serif;
}

.header .head .emojis-Wrap .emoji-Card.selected {
  filter: drop-shadow(0 0 5px rgb(102, 102, 102));
  transform: scale(1.1);
  margin: 10px;
  border-radius: 5px;
  background-color: whitesmoke;
}

.header .head .button-Wrap {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.header .head .button-Wrap .Send-Btn {
  padding: 10px 36px;
  border: solid black 2px;
  background-color: #f3f8ff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 100ms ease-in-out;
}

.header .head .button-Wrap .Send-Btn:hover {
  border: solid black 4px;
  background-color: #eee7da;
}

.header .head .button-Wrap .Send-Btn:active {
  transform: scale(0.9);
}

.thank-Wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #f3f8ff;
  height: 550px;
  width: 330px;
  border: solid rgb(189, 189, 189) 5px;
  border-radius: 15px;
}

.thank-Wrapper #heart-Icon {
  color: red;
  font-size: 100px;
}

.thank-Wrapper .first-P {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.thank-Wrapper .second-P {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.thank-Wrapper .last-P {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: black;
  font-weight: 600;
  max-width: 75%;
}
