@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
body {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: url(https://random-image-pepebigotes.vercel.app/api/random-image);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Poetsen One", sans-serif;
    overflow: hidden;
}

p {
    font-weight: lighter;
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  border-radius: 6px;
  border: none;

  color: #fff;
  background: linear-gradient(180deg, #4B91F7 0%, #367AF6 100%);
   background-origin: border-box;
  box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn:focus {
  box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
  outline: 0;
}

#box {
    width: 80%;
    height: 80%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

#container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

#container .text {
    width: 100%;
    padding: 10px;
}

#container .text textarea {
    width: 100%;
}
