:root {
  --background-color: #121826;
  --primary-color: #007bff;
  --font-family: 'Roboto', sans-serif;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
  color: #E0E6EE;
  font-family: var(--font-family);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
}

h1 {
  font-size: 2em;
  margin-top: 4em;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #fff;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 1.5em;
  font-weight: 400;
  color: #bbb;
}

p {
  margin: 1em 0;
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.dialog-scroll {
  text-align: justify;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
}

.circle:nth-child(1) {
  width: 400px;
  height: 400px;
  background: linear-gradient(10deg, #ff6ec4, #00d4ff);
  top: 10%;
  left: 10%;
}

.circle:nth-child(2) {
  width: 300px;
  height: 300px;
  background: linear-gradient(20deg, #42e695, #ff9800);
  top: 80%;
  left: 10%;
}

.circle:nth-child(3) {
  width: 350px;
  height: 350px;
  background: linear-gradient(90deg, #ff6ec4, #cddc39);
  top: 60%;
  left: 80%;
}

.circle:nth-child(4) {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #42e695, #9c27b0);
  top: 10%;
  left: 60%;
}

.container {
  max-width: 600px;
  width: 100%;
  height: fit-content;
  padding: 0;
  box-sizing: border-box;
}

.creator {
  margin-top: 7em;
}

sl-radio-group {
  width: 100%;
  margin-top: 1em;
}

sl-card {
  max-width: 600px;
  width: 100%;
}

sl-button-group {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
}

img {
  border-radius: 5px;
}

#details {
  text-align: left;
}

.wrap-text {
  white-space: normal;
  word-wrap: break-word;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
    margin-top: 4em;
  }
  h2 {
    font-size: 1.2em;
  }
  .container {
    padding: 0 1em;
  }
  sl-button {
    font-size: 1em;
  }
  .creator {
    margin-top: 3em;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 2em;
    margin-top: 1em;
  }
  h2 {
    font-size: 1em;
  }
  .container {
    padding: 0 0.5em;
  }
  sl-button {
    font-size: 0.8em;
  }
  .creator {
    margin-top: 1em;
  }
}
