* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.hero{
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #08001f, #30197d);
  color: #fff;
  position: relative;
}

.box{
  width: 800px;
  height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}



.show{
  width: 100%;
  height: 100%;
  background: rgba(235, 0, 255, 0.11);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(40px);
  font-size: 70px;
}

.box::before{
  content: '';
  width: 180px;
  height: 180px;
  background: #f41b75;
  border-radius: 5px;
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: -1;
}
.box::after{
  content: '';
  width: 180px;
  height: 180px;
  background: #419aff;
  border-radius: 50%;
  position: absolute;
  right: -30px;
  bottom: -50px;
  z-index: -1;
}

.btn{
  display: flex;
  justify-content: start;
  text-align: center;
  gap: 15px;
  margin-top: 20px;
}

#start{
  max-width: 100%;
  display:flex;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: #f41b75;
  color: #fff;
  border: none;
}
#start:hover{
  max-width: 100%;
  display:flex;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: #30197d;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
#reset{
  max-width: 100%;
  display:flex;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: #419aff;
  color: #fff;
  border: none;
}
#reset:hover{
  max-width: 100%;
  display:flex;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: #30197d;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #08001f, #30197d);
  color: #fff;
  position: relative;
  padding: 20px;
  overflow: hidden;
}

.box {
  width: 100%;
  max-width: 800px;
  min-height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.show {
  width: 100%;
  min-height: 180px;
  background: rgba(235, 0, 255, 0.11);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(40px);
  font-size: 70px;
  padding: 20px;
  text-align: center;
  word-break: break-word;
}

/* Shapes */
.box::before {
  content: '';
  width: 180px;
  height: 180px;
  background: #f41b75;
  border-radius: 5px;
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.box::after {
  content: '';
  width: 180px;
  height: 180px;
  background: #419aff;
  border-radius: 50%;
  position: absolute;
  right: -30px;
  bottom: -50px;
  z-index: -1;
}

/* Buttons */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#start,
#reset {
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#start {
  background: #f41b75;
}

#start:hover {
  background: #30197d;
}

#reset {
  background: #419aff;
}

#reset:hover {
  background: #30197d;
}

/* Tablet */
@media (max-width: 768px) {
  .box {
    max-width: 90%;
  }

  .show {
    font-size: 50px;
    min-height: 150px;
  }

  .box::before,
  .box::after {
    width: 130px;
    height: 130px;
  }
}

/* Mobile */
@media (max-width: 480px) {


 
  .show {
    font-size: 32px;
    min-height: 120px;
    padding: 15px;
  }

  .btn {
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: nowrap;

  }

  #start,
  #reset {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .box::before {
    width: 90px;
    height: 90px;
    left: -20px;
    top: -20px;
  }

  .box::after {
    width: 90px;
    height: 90px;
    right: -15px;
    bottom: -20px;
  }
}