:root {
  --Strongcyan: hsl(172, 67%, 45%);
  --Verydarkcyan: hsl(183, 100%, 15%);
  --Darkgrayishcyan: hsl(186, 14%, 43%);
  --Grayishcyan: hsl(184, 14%, 56%);
  --Lightgrayishcyan: hsl(185, 41%, 84%);
  --Verylightgrayishcyan: hsl(189, 41%, 97%);
  --White: hsl(0, 0%, 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--Lightgrayishcyan);
  font-family: "Space Mono", sans-serif;
  position: relative;
  height: 100vh;
}

.logo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container {
  max-width: 700px;
  background-color: var(--White);
  border-radius: 20px;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .container {
    flex-direction: row;
  }
}

.white {
  color: white;
}

.left p {
  color: var(--Darkgrayishcyan);
}
.left .tip {
  margin: 2rem 0 0.5rem 0;
}
.left .num {
  margin: 1.5rem 0 0.5rem 0;
}
.left input {
  border-radius: 5px;
  border: none;
  background-color: var(--Lightgrayishcyan);
  width: 100%;
  height: 40px;
  color: var(--Verydarkcyan);
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
  outline: none;
  display: flex;
}
.left input[type=number]::-webkit-inner-spin-button {
  display: none;
}
.left .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.left .grid button {
  border: none;
  background-color: var(--Verydarkcyan);
  color: var(--White);
  font-size: 1.25rem;
  padding: 0.5em 0.75em;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Space Mono", sans-serif;
}
.left .grid button:focus {
  background-color: var(--Strongcyan);
  color: var(--Verydarkcyan);
}
.left .grid button:last-child {
  background-color: var(--Lightgrayishcyan);
  color: var(--Darkgrayishcyan);
}
@media (min-width: 768px) {
  .left .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.left .grid input {
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.right {
  background-color: var(--Verydarkcyan);
  margin: 1.5rem auto;
  border-radius: 16px;
  padding: 3rem 2rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.right p {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .right {
    margin: 0 0 0 3rem;
  }
}
.right .flex {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
}
.right .total {
  margin: 1rem 0;
}
.right .digit {
  color: var(--Strongcyan);
  font-size: 1.5rem;
}
.right button {
  margin-top: auto;
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 0.5rem 0;
  background-color: var(--Lightgrayishcyan);
  color: var(--Verydarkcyan);
  font-weight: 700;
  cursor: pointer;
}
.right button:focus {
  background-color: var(--Strongcyan);
}/*# sourceMappingURL=styles.css.map */