body,
html {
  font-family: 'Lato', sans-serif;
  margin: 0;
}

body {
  display: block;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#intro {
  display: flex;
}

.content {
  display: none;
}

.content .text {
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  /* Adjust the opacity to control the darkness of the image */
  z-index: -1;
}

.main-container {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.main-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1C3D5A;
  /* Changed to a dark shade of blue */
  margin-bottom: 1rem;
}

.main-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem;
  text-align: left;
}

.main-cta {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  background-color: #467086;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
}

.main-cta:hover {
  background-color: #f08c00;
}

.sign-description {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

#wallet-button {
  display: none;
}

#sign-button {
  display: none;
}

#chat {
  display: none;
  width: 400px;
  height: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 40px 20px rgba(128, 0, 128, 0.8);
  flex-direction: column;
  justify-content: space-between;
}

#messages {
  height: 90%;
  overflow-y: auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.message-oracle,
.message-tg {
  margin-bottom: 10px;
  line-height: 1.4;
}

.message-oracle .name,
.message-tg .name {
  font-weight: bold;
}

#inputArea {
  display: flex;
  justify-content: space-between;
}

#input {
  width: 85%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ddd;
}

#sendButton {
  width: 15%;
  margin-left: 5%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #007BFF;
  cursor: pointer;
}

#sendButton:hover {
  background-color: #0056b3;
}