
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-size: 90%;
}
 .section{
      width: 100vw;
      height: 100vh;
      border: 1px solid gray;
      position: relative;
     background-image: linear-gradient(to bottom right, #2d0404, #057e6e, #270404);
 }

 .container{
  border-left: 5px solid red;
  box-shadow: 1px 1px 2px 15px rgb(255, 145, 0);
  border-radius: 4px;
  background-color: rgb(0 0 0 / 56%);
  color: white;
  padding: 5px 15px 5px 15px;
  min-height: 10rem;
  position: relative;
  position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
}
.container span {
    font-size: 5rem;
}
.container::after {
    display: block;
    content: '';
    width: 100%;
    height: 5px;
    background-color: red;
    position: absolute;
    left: 0px;
    bottom: -25px; 
    box-shadow: 
    0 10px 0px 0px rgb(255, 145, 0),    /* Second line slightly shorter */
    0 15px 0px 0px rgb(255, 145, 0),    /* Third line shorter */
    0 20px 0px 0px rgb(255, 145, 0);    /* Fourth line shortest */
}
.container::before{
    display: block;
    content: '';
    width: 50%;
    height: 150px;
    background-color: rgb(0, 8, 255);
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    bottom: -250px;
    rotate: 90deg;
    z-index: -100;

}

.box01{min-width: 300px; text-align: center;}
 .box02{
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.box02 button {
    min-width: 5rem;
    border: none;
    padding:3px 5px;
    box-shadow: 1px 1px 4px .5px gray;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.box02 button:active {
    box-shadow: none;
    translate: 1px 1px;
}
  /* Media Query for smaller devices */
  @media (max-width: 768px) {
      .container {
          box-shadow: 1px 1px 2px 8px rgb(255, 145, 0);
          padding: 10px;
          min-height: 8rem;
          text-align: center;
      }

      .box01{min-width: 150px; text-align: center;}
      .box01 span {
          font-size: 2rem;
      
      }

      .box02 button {
          font-size: 0.7rem;
          min-width: 4rem;
          padding: 2px 4px;
          margin-top: 1.5rem;
          font-weight: bold;
      }

      .container::before{
        display: block;
        content: '';
        width: 50%;
        height: 70px;
        background-color: rgb(0, 8, 255);
        position: absolute;
        left: 50%;
        translate: -50% -50%;
        bottom: -120px;
        rotate: 90deg;
        z-index: -100;

}

     .container::after{
        bottom: -15px;
     }
  }

  @media (max-width: 480px) {
      .container {
          box-shadow: 1px 1px 2px 5px rgb(255, 145, 0);
          padding: 8px;
          min-height: 6rem;
      }

      .box01 span {
          font-size: 1.5rem;
      }

      .box02 {
          gap: 0.5rem;
      }

      .box02 button {
          font-size: 0.6rem;
          min-width: 3.5rem;
          padding: 1px 2px;
      }
  }
