* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Philosopher", serif;
}
.main-container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("https://wallpaperbat.com/img/9743649-hogwarts-legacy-dark-edition.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding-top: 120px;
}
header {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Cinzel Decorative", serif;
}
header h1 {
  font-size: 40px;
  margin-bottom: 4px;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%; 
  max-width: 350px;
}
.user-input input {
  height: 48px;
  min-width: 350px;
  outline: none;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0px 12px;
  box-shadow: 4px 4px 30px #19321aa5;
  transition: all 0.3s ease;
}
.user-input input:focus {
  background: #eaffea;
  border: 2px solid #39663a;
}
.show-user {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #19321a6e;
  border-radius: 6px;
  padding: 12px;
  backdrop-filter: blur(10px);
  max-width: 350px;
}
.show-user #title {
  font-size: 16px;
  width: 100%;
  border-bottom: 1px solid #324b3a;
  padding-bottom: 8px;
}
.show-user #content {
  font-weight: 400;
  color: #edffed;
}
.show-user ul {
  overflow-y: auto;
  height: 300px;
}
.show-user ul li,
#empty-value {
  list-style: none;
  margin-top: 8px;
  padding: 2px 0;
}

@media only screen and (max-width: 768px) {
  .main-container {
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }
  header {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
  }
  header h1 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  header p {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%; 
  }
  .user-input input {
    height: 40px;
    width: 100%;
    min-width: 100%; 
  }
  .show-user {
    max-width: 100%;
    width: 100%;
  }
  .show-user #title {
    font-size: 14px;
    padding-bottom: 8px;
  }
  .show-user #content {
    font-size: 14px;
    font-weight: 400;
  }
  .show-user ul {
    height: 300px;
  }
  .show-user ul li,
  #empty-value {
    font-size: 14px;
  }
}