@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.image-container {
  margin-bottom: 20px;
}

.image-container .image {
  display: flex;
  justify-content: center;
}

.image-container .image img {
  width: 200px;
  max-width: 100%;
}

.image-container h1 {
  color: #00bcd4;
  font-size: 36px;
  margin-top: 10px;
}

.image-container p {
  color: #324042;
  font-size: 14px;
  margin-top: 10px;
}

.input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(202 253 255 / 50%);
  border-radius: 20px;
  padding: 0 15px;
  height: 50px;
  width: 300px;
  gap: 10px;
  margin-top: 20px;
}

.input .talk {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input .talk i {
  color: #aed0d0;
  font-size: 20px;
}

.input .content {
  color: #aed0d0;
  font-size: 14px;
}

.footer {
  width: 100%;
  background-color: #000;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.footer p {
  color: #666;
  margin: 0;
}

.footer .lyra-highlight {
  color: #e1006b;
  font-weight: bold;
  text-decoration: none; /* removes underline */
}

.footer .lyra-highlight:hover {
  text-decoration: underline;
  color: #ff3399;
}

@media (max-height: 500px) {
  .image-container .image img {
    width: 150px;
  }
  .image-container h1 {
    font-size: 28px;
  }
  .input {
    width: 250px;
    height: 45px;
  }
}
