* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-user-drag: none;
  font-family: 'Lato', sans-serif;
}

html,
body {
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.chat-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.chat-icon {
  width: 50px;
  height: 50px;
  background-color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: grid;
  place-items: center;
}

.chat-icon img {
  width: 100%;
  height: 100%;
  padding: 12px
}

.chat-icon:hover {
  transform: scale(1.1);
}

.chat-window {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 375px;
  height: 450px;
  background-color: #131313;
  border: 1px solid #272727;
  border-radius: 5px;
  overflow: hidden;
  transform: translateY(120%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  display: flex;
  flex-direction: column;
}

.chat-window.open {
  transform: translateY(0);
  opacity: 1;
  animation-name: slide-up;
}

@keyframes slide-up {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.chat-window.close {
  transform: translateY(120%);
  opacity: 0;
  animation-name: slide-down;
  pointer-events: none;
}

@keyframes slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

.bubble-container {
  padding: 20px;
  height: 100%;
  overflow-y: scroll;
}

.bubble-container::-webkit-scrollbar {
  width: 8px;
}

.bubble-container::-webkit-scrollbar-track {
  /* background-color:tra */
}

.bubble-container::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 3%);
  border-radius: 8px;
}

.option-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  padding: 10px;
  background-color: hsl(0, 0%, 10%);
  gap: 5px
    /* margin-bottom: 10px; */
}

.option-container.disabled .option {
  color: hsl(0, 0%, 40%)
}

.option {
  font: inherit;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: hsl(0, 0%, 15%);
  border: 1px solid hsl(0, 0%, 5%);
  border-radius: 5px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 50ms ease;
  color: hsl(0, 0%, 80%)
}

.option:active {
  background-color: hsl(0, 0%, 17%);
  border: 1px solid hsl(0, 0%, 5%);
}

.bubble {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #636363;
  border: 1px solid #8d8d8d;
  border-radius: 5px;
  color: hsl(0, 0%, 88%)
}

.bubble a,
.response a {
  color: rgb(128, 147, 255)
}

.response {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #424242;
  border: 1px solid #727272;
  border-radius: 5px;
  color: hsl(0, 0%, 78%)
}

#mouseGlow {
  position: absolute;
  background-color: rgb(0, 38, 255);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(100px);
  translate: -50% -50%;
  top: -500%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

main {
  height: 100%;
  padding: 20px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 200ms ease;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}

.faded {
  opacity: 1;
}

h1 {
  color: white;
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin-top: 30px;
}

h2 {
  color: rgb(133, 133, 133);
  font-size: clamp(1.8rem, 6vw, 3rem)
}

nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);

  div:last-child {
    display: flex;
    gap: 17px;
  }
}


nav button {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  cursor: pointer;
  background: none;
  bottom: none;
}

@media (max-width:525px) {
  h1 {
    margin-top: 30px
  }
}