@font-face {
  src: url("Lato-Regular.ttf");
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
}
@font-face {
  src: url("Lato-Bold.ttf");
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
}

body {
  background: #E4E8EE;
  font-family: 'Lato', sans-serif;
  margin: 0;
}

::selection {
  background: #C8E1F3;
}

main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-inline: auto;
  position: relative;
}

.ui {
  width: calc(100% + 4px);
  margin-left: -2px;
}
.ui-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: -3px;
}

textarea {
  position: absolute;
  width: calc(38% + 2px);
  top: 25vw;
  height: 23vw;
  left: 18%;
  
  padding: clamp(4px, .8vw, 12px);
  box-sizing: border-box;
  
  color: #5B5B5B;
  font-family: 'Lato', sans-serif;
  font-size: 1.25vw;
  
  border: 1px solid #D2D2D2;
  border-radius: 4px;
}
textarea:focus {
  outline: none;
}