html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background: linear-gradient(180deg, rgba(255, 136, 0, 1) 10%, rgba(237, 221, 83, 1) 75%);
  margin: 0;
  height: 100%;
  padding: 0;
  overflow: scroll;
}

.page-container {
  max-width: 1600px;
  margin: auto;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  grid-template-areas:
    "left-top  right"
    "left-bot  right";
  margin: 0 50px 0 50px;
  min-height: 60vh;
}

.left.top {
  grid-area: left-top;
  padding: 12px;
  padding-top: 0;
  background: transparent;
  align-content: center;
  justify-content: center;
  display: flex;
}

.left.bottom {
  grid-area: left-bot;
  text-align: center;
}

.right {
  grid-area: right;
  padding: 12px;
  background: #ffffff61;
  border: 1px solid black;
  border-radius: 5px;
  overflow: scroll;
  max-height: 730px;
}

.wiesio-image {
  width: 30vw;
  border-radius: 10%;
  max-width: 370px;
  /*height: fit-content;*/
}

.image-link:hover {
  filter: brightness(0.6);
}

.conv {
  width: max-content;
  border: 1px solid white;
  padding: 5px;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 80%;
}

.conv-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: fit-content;
  min-height: 100%;
}

.messages-wrapper {
  display: flex;
  flex-direction: column;
}

.conv-user {
  align-self: end;
  background: #009fff6b;
  border-bottom-right-radius: 0;
}

.conv-assist {
  background: #ffcb004f;
  border-bottom-left-radius: 0;
}

.user-input {
  width: 95%;
  resize: none;
  font-size: 16px;
  margin: 0;
}

.form-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.message-send {
  height: fit-content;
  padding: 5px;
  align-self: end;
  margin-left: 2px;
  background-color: #fbcc5d;
  border: 1px solid gray;
  border-radius: 6px;
}

.message-send:hover {
  cursor: pointer;
  background-color: #b99643;
}

h1 {
  text-align: center;
  font-size: 50px;
  color: #515151;
}

.loader-wrapper {
  width: 30px;
  height: auto;
}
