@import url('https://fonts.googleapis.com/css2?family=Inter&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
  width: 100vw;
  height: 100vh;
  padding-bottom: 4rem;
  overflow-x: hidden;
  display: grid;
  place-items: center;
  background-color: #F4F4F1;
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.container {
  border-radius: 20px;
  width: 765px;
  height: 865px;
  background-color: #fff;
  box-shadow: 0 0 47px 0px rgba(148, 146, 120, .23);
  margin-bottom: 4rem;
}

button {
  font-family: 'Roboto Mono', monospace;
  border-radius: 15px;
  padding: 20px 50px;
  border: none;
  font-size: 22px;
  font-weight: 700;
}

.amount, .perPerson {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 175px;
  background-color: white;
}

.amount {
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #E0E0E0;
}

.amount p, .perPerson p {
  font-size: 14px;
  margin-right: 30px;
}

.amount h3, .perPerson h3 {
  font-size: 55px;
  display: flex;
}

.amount span, .perPerson span {
  font-size: 88px;
}

.inputs {
  border-radius: 20px 20px 0 0;
  background-color: rgb(247, 247, 247);
  height: 265px;
  display: flex;
  flex-direction: row;
}

.amt, .ppl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.amt img, .ppl img {
  position: absolute;
  left: 10%;
  top: 27%;
  width: 30px;
  height: 55px;
}

.amt {
  width: 60%;
  border-right: 1px solid #E0E0E0;
}

.ppl {
  width: 40%;
}

.billTotal, .numPeople {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-weight: 700;
  height: 85px;
  font-size: 66px;
  width: 80%;
  border: none;
  border-bottom: 2px dotted #E0E0E0;
  background-color: rgb(247, 247, 247);
  text-align: center;
}

.percentages {
  background-color: rgb(238, 238, 238);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  height: 110px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.tip {
  height: 72px;
  display: grid;
  place-items: center;
}

.unhighlightedTip {
  background-color: white;
  color: #60C1B6;
}

.unhighlightedTip:hover {
  background-color: #60C1B6;
  color: white;
  cursor: pointer;
}

.highlightedTip {
  background-color: #60C1B6;
  color: white;
}

.calcButton {
  height: 77px;
  padding: 30px;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: row;
  background-color: rgb(247, 247, 247);
  justify-content: right;
  align-items: center;
}

.calcButton button {
  background-color: #ED7861;
  height: 72px;
  color: white;
  box-sizing: border-box;
}

.calcButton button:hover {
  cursor: pointer;
  background-color: white;
  color: #ED7861;
  border: 2px solid #ED7861;
}