<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  font-family: 'Space Mono', monospace; 
}

body {
  background-color: #C5E4E7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  margin-top: 30px;
}

.main {
  background-color: hsl(0, 0%, 100%);
  border-radius: 40px;
  color: #547675;
  display: flex;
  width: 800px;
  margin: 20px;
  padding: 40px 50px 40px 40px;
}

input {
  padding: 5px;
  background-color: hsl(185, 41%, 84%);
  border-radius: 5px;
  border-style: none;
  text-align: right;
  font-size: 15px;
}

input:focus {
  border: 2px solid #B5F7F0;
  outline: none;
  color: #00474B;
}

button {
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-weight: bolder;
  font-size: large;
  border-style: none;
  background-color: hsl(183, 100%, 15%);
}

.bolder {
  font-weight: 700;
}

.information {
  background-color: #00474B;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  width: 500px;
  margin-left: 50px;
}

.text-information {
  margin: 10px 10px 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dinamic {
  margin: 0 30px 30px 120px;
  font-weight: 900;
  font-size: xx-large;
}

.dinamic p {
  color: #2BC3AD;
}

#static{
  margin: 0 30px 30px 0px;
  color: white;
}

#static em {
  font-weight: 500;
  font-size: 14px;
  color: #2F6164;
}

.information button {
  width: 300px;
  padding: 10px;
  background-color: #0D686D;
  margin-left: 80px;
}

button:hover {
  background-color: #9FE8DF;
}

#calc {
  width: 300px;
  box-sizing: border-box;
}
#bill {
  display: flex;
  flex-direction: column;
}

#tip{
  display: flex;
  flex-direction: column;
  width: 300px;
}

#buttons{
  display: flex;
  flex-wrap: wrap;
}

#buttons button {
  width: 80px;
  padding: 15px;
  margin-right: 10px;
  margin-bottom: 10px;
}

#buttons input {
  width: 68px;
  height: 46px;
  margin-right: 10px;
  font-size: 15px;
}

#numerPeople label {
  margin: 20px 10px 10px 0;
}

#input-container input{
  width: 300px;
}

#input-container {
  position: relative;
  margin: 10px 10px 10px 0;
}


#input-container img {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}</pre></body></html>