* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 500ms ease;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #dbe4ff;
  backdrop-filter: opacity(0.2);
}
.body-bg-color {
  text-align: center;
  margin-bottom: 1rem;
}
.container {
  /* border: 2px solid; */
  width: 90%;
  max-width: 900px;
  margin: auto;
}
.title {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 3rem);
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  border-bottom: 5px solid;
  position: sticky;
  top: 0;
  color: #f5f5f5;
  background-color: #063ee7;
  padding: 10px;
}
.wrapper {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 300px));
  grid-template-rows: repeat(10, 50px);
  gap: 2rem;
}
.box {
  border-radius: 5rem;
  height: 100%;
  width: 100%;
  box-shadow: -3px -3px 10px #ffffffee, 3px 3px 10px rgba(0, 0, 0, 0.4),
    -3px -3px 5px #f5f5f5, 1px 1px 5px #050505;
}
.box h3 {
  text-align: center;
  line-height: 50px;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
}
@media screen and (max-width: 735px) {
  .wrapper {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    grid-template-rows: repeat(15, 40px);
  }
  .box h3 {
    line-height: 40px;
  }
}
.copied-text{
  position: fixed;
  bottom: 1rem;
  padding:0.8rem;
  border-radius: 5rem;
  border: 1px solid;
  height: 50px;
  z-index: 99;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}