html,
body {
  margin: 0;
  padding: 0;
}

:root {
  font-size: 10px;
}

canvas {
  display: block;
}

.cellphone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: unset !important;
  transform-origin: unset !important;
}

.cellphone > div {
  width: 100%;
  max-width: 33rem;
  height: 100%;
  max-height: 60rem;
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  overflow: hidden;
}

.cellphone > div nav {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.cellphone > div nav header {
  font-size: 3rem;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
}

.cellphone > div .messages {
  display: flex;
  flex-direction: column;
}

.cellphone > div .messages .message {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.2);
}

.cellphone > div .messages .message:nth-of-type(2n) {
  background-color: rgba(255, 255, 255, 0.3);
}

.cellphone > div .messages .message > header {
  font-weight: 600;
  margin-right: 10px;
}

.cellphone > div .messages .message > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
