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

body {
  padding-top: 80px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}
.bg {
  width: 478px;
  height: 100%;
  background-color: #0b141a;
  background-image: url(bg.chat.png);
  background-attachment: fixed;
  z-index: 1;
  position: absolute;
}
.header {
  max-width: 478px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #666;
  color: white;
  position: fixed;
  align-items: center;
  top: 0;
  z-index: 3;
  padding: 10px;
}
.profil {
  height: 50px;
  border-radius: 50px;
}
.search,
.toggle {
  height: 25px;
  width: 25px;
  fill: white;
}
.container1 {
  background-color: #015c4d;
  border-radius: 20px 20px 0 20px;
  text-align: right;
  padding: 20px;
  margin-left: 25%;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  margin-right: 10px;
  position: relative;
  z-index: 2;
}
.container2 {
  background-color: #1f2c33;
  border-radius: 20px 20px 20px 0;
  padding: 20px;
  margin-left: 25%;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  margin-right: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.nama {
  font-size: 18px;
  font-weight: bold;
}
.status {
  font-size: 14px;
  color: lightgreen;
  font-style: oblique;
}
.chat1 {
  align-self: flex-end;
  border: 3px solid snow;
  background-color: slategray;
  text-align: center;
  color: white;
  padding: 20px 20px;
  margin: 20px 20px 20px;
  margin-left: 25px;
  border-radius: 100px 0 100px 100px;
}
.chat2 {
  align-self: flex-start;
  border: 3px solid snow;
  background-color: lightgray;
  text-align: center;
  color: slategray;
  padding: 20px 20px;
  margin: 20px 20px 20px;
  margin-left: 25px;
  border-radius: 100px 0 100px 100px;
}

.chat {
  max-width: 478px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
.footer {
  width: 478px;
  height: 60px;
  display: flex;
  padding: 10px;
  background-color: #1f2c33;
  align-items: center;
  justify-content: space-between;
}
.input {
  width: 90%;
}
.input input {
  height: 40px;
  border-radius: 40px;
  background-color: #2a3942;
  width: 100%;
  padding: 0 20px;
  columns: white;
}
.send {
  width: 10%;
  cursor: pointer;
}
.send svg {
  width: 100%;
  height: 30px;
  fill: white;
  transition: 300ms ease-in-out;
}
.send svg:active {
  scale: 0.75;
}
