body{
  background: hsla(245, 75%, 80%, 0.25);
  color:#070707;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.main-container{
    width: 700px;

    display: flex;
    background-color: #faf7f0;
    height: 550px;
    margin: 0 auto;
    box-shadow: inset 0px 0px 7px blueviolet;
    position: relative;
    border-radius: 10px;
}

.dividend{
    font-size: 4rem;
    text-shadow: 1px 1px 0px rgb(8, 8, 8);
    color: #bccef8;
    font-weight: bold;
}
.content{
  display: flex;
  position: relative;
justify-content: center;
  width: 70%;
  height: 100%;
}
.divisor{
    text-shadow: 1px 1px 0px rgb(8, 8, 8);
    color: #98a8f8;
    font-size: 2.75rem;

    font-weight: bold;
}
.divisor span{
  font-size: 2.5rem;
}
.division{
    display: flex;
    position: absolute;
    flex-direction: column;
    width:100%;
    top: 10%;
    align-items: center;
    font-size: 1.75rem;
    margin: 0 auto;
    line-height: 1;
}
.stack-container{
  position: absolute;
  width: 30%;
    display: flex;
    flex-direction: column;
    text-shadow: 1px 1px 7px grey;
    justify-content: space-evenly;

    right: 0;
    margin: 0 auto;
    align-items: flex-start;
    padding-bottom: 2rem;
    text-align: center;
    height: 100%;
    z-index: 1;
}

.stack-container button{
    background-color: #98a8f8;
    padding: 2px 5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100px;
    font-size: 2.75rem;
    font-weight: bolder;
    color:#faf7f0;
    border-bottom: 1px solid #98a8f8;
}

.stack-container .letsee{
  padding: 2px 5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  color:#faf7f0;
  border-bottom: 1px solid #98a8f8;
  font-weight: bold;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  height: 1rem;
}
.stack-container button:hover{
    
    transform: scale(1.1);
}
.verify-btn{
    display: flex;
    justify-content: space-around;
    height: 100px;
    border-radius: 15%;
    align-items: center;
    flex-direction: column;
    width: 150px;
    cursor: pointer;
    border: none;
    margin: 0 auto;
    color: #faf7f0;
    padding: 1rem;
    font-weight: bold;
    font-size: 2rem;
    background-color: #98a8f8;
    text-shadow: 1px 1px 0px grey;
    transition: .7s;
    box-shadow: 2px 5px 0px blueviolet;
}
.input-text{
  text-align: center;
  text-shadow: 1px 1px 0px rgb(8, 8, 8);
  font-weight: bolder;
  color: #673ab7;
  cursor: pointer;
  border-radius: 15px;
  background-color: #bccef8;
  font-size: 4rem;
  width: 150px;
  border: none;

  height: 70px;
  transition: .7s;
}
.button-container{
  margin-top: 5rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.verify-btn:hover{
    transform:scale(1.07);
    background-color: #7a90ff;
}

.lives{
    display: flex;
    justify-content: left;
    position: absolute;
    width: 100%;
    gap: 7px    ;
    padding-left: 1rem;
    padding-top: .5rem;
}

.stars {
    position: relative;
    
    display: inline-block;
    width: 0;
    height: 0;
    
    margin-left: .9em;
    margin-right: .9em;
    margin-bottom: 1.2em;
    
    border-right:  .3em solid transparent;
    border-bottom: .7em  solid #FC0;
    border-left:   .3em solid transparent;
  
    /* Controlls the size of the stars. */
    font-size: 1.25rem;
    
    &:before, &:after {
      content: '';
      
      display: block;
      width: 0;
      height: 0;
      
      position: absolute;
      top: .6em;
      left: -1em;
    
      border-right:  1em solid transparent;
      border-bottom: .7em  solid #FC0;
      border-left:   1em solid transparent;
    
      transform: rotate(-35deg);
    }
    
    &:after {  
      transform: rotate(35deg);
    }
  }
/* 
  .delte-btn{
    display: flex;
    justify-content: space-evenly;
    width: 70%;
    position: absolute;
    bottom: -1rem;
    height: 100%;
    flex-direction: column;
    z-index: 0;
  }
   */
  /* .delte-btn button{
    font-weight: bold;
    font-size: .75rem;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: red;
    height: 1rem;

  }  */
  
   .gameover{
    width: 100%;
    height: 100%;
    z-index: 2;
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: bolder;
    text-shadow: 1px 1px 7px #673ab7;
    color: white;
     background-color: #9ac4ff;
   }
   .restart{
    width: max-content;
    cursor: pointer;
    font-weight: bolder;
    font-size: 1.25rem;
    border-radius: 15px;
    border: none;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1px 7px blue;
    padding: .5rem 1rem;
    text-align: center;
    color: #650000;
    height: 50px;
  }
  .restart:hover{
    transform: scale(1.1);
  }
  .score{
    margin-top: 2.5rem;
    font-size: 1.5rem;
    font-weight: bolder;
    color: green;
  }


  .start-btn{
    width: max-content;
    display: flex;
    cursor: pointer;
    font-weight: bolder;
    font-size: 2.25rem;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1px 7px blue;
    padding: 1rem 1.75rem;
    color: #650000;
    height: 50px;
    margin: 0 auto;
  }
  .start-btn:hover{
    transform: scale(1.1);
  }
.game{

  display: flex;
  margin: 1rem;
  justify-content: center;
  align-items: center;
}
 .gamestart{
  background-image: url(/imgs/hard_division_game_background.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 2;
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    flex-direction: column;
    font-size: 2.75rem;
    letter-spacing: 2px;
    font-weight: bolder;
    text-shadow: 1px 1px 0px #673ab7;
    color: #faf7f0;
    border-radius: 10px;
    background-color: #9ac4ff;
   }
   .instructions{
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
    position: absolute;
    flex-direction: column;
    color: #673ab7;
    border-radius: 10px;
    background-color: #9ac4ff;
    padding: 1rem;
   }
  .title{
    text-align: center;
    font-size: 2rem;
    font-weight: bolder;
    text-shadow: 1px 1px 0px blueviolet;
    letter-spacing: 2px;
   }
  .paragraph{
  font-size: 1.5rem; color:#650000;
   font-weight: bold;
    letter-spacing: 1px;
    margin: .25rem;
     text-shadow: 1px 1px 0px blueviolet; 
  }


  .paragraph_text {
    padding: 1px 0;
    max-width: 1024px;
    margin-top: 20px;
  
    margin: 1rem auto;
    font-size: 1.25rem;
  
    text-align: left;
    line-height: 1.15;
    display: flex;
    align-items: center;
  }
  .head_text {
    margin: 1rem;
  }
  .paragraph_text p {
    text-wrap: balance;
  }
  .head_subtitle {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: green;
    line-height: 1.25;
  }
  .head_subtitle2 {
    text-align: left;
    margin-bottom: 1.1rem;
  }

  .image-section {
    width: max-content;
    background-color: #98a8f8;
    box-shadow: 7px 5px 2px rgba(0, 255, 38, 0.711);
    margin: 1rem 0;
    border-radius: 10px;
    display: flex;
    padding: 1rem;
  }
  .image-section img{
    width: 299px;
  }
  .head_section_li_n {
    line-height: 1.1;
  }
  .head_section_li_span {
    color: green;
    font-weight: 700;
  }
  
  /* Section 2 */
.section_2{
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  /* margin-top: 1rem;
  padding-top: 1rem; */
  padding-bottom: 1rem;

  text-align: center;
  display: flex;
  justify-content: center;
}  
.row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 1rem;
}
.column-title h2{
  margin: 1rem 0rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.row #column1, 
.row #column2,
.row #column3{
  width: 325px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 7px rgb(100, 7, 255);
  gap: 7px;
}
.purple{
  background-color: rgba(250, 100, 250, 0.7);
}
.yellow{

  background-color: rgba(250, 250, 100, 0.7);
}
.red{

  background-color: rgba(250, 100, 100, 0.7);
}
.train_button {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  background-color: #4CAF50; 
  color: white; 
  border: 2px solid #4CAF50;
  border-radius: 10px;
  padding: 16px 32px;
  margin: 4px  2px 1rem 2px;
  -webkit-transition-duration: 0.2s; /* Safari */
  transition-duration: 0.2s;
  cursor: pointer;
  margin-top: auto;
  align-self: center;
  box-shadow: 0px 0px 10px grey;
}
.train_button:hover {
  background-color: rgb(255, 255, 255);
  color: #4CAF50;
  transform: scale(1.1);
}
.img_boards{
  padding: .25rem;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.column_paragraph_for_columns{
  text-align: left;
  padding: 1rem 1rem;
}
.more{
  border-top: 1px solid grey;
  margin: .5rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  padding:1rem;
  color: rgb(255, 7, 7);
  text-shadow: 0px 0px 7px grey;
}
/* Section 2 */

  @media screen and ( max-width:1250px) {
    .stack-container button{
      font-size: 2rem;  
      width: 70px;
    }
    .delte-btn button{
      font-size: .7rem;
    }
  }

  @media screen and (max-width:845px){
  .delte-btn button{
    font-size: .75rem;
  }
  .delte-btn{

    bottom: 5rem;
  }
  }

  @media screen and (max-width: 768px){
      .delte-btn{
          display: flex;
          justify-content: space-evenly;
          width: 90%;
          position: absolute;
          bottom: 8rem;
        }
  
      .stack-container{
          padding-bottom: 5rem;
      }
      .stars{
          font-size: 1rem;
      }
      .main-container{
          width: 100%;
      }

  }

  @media screen and (max-width: 475px){
    .paragraph{
      font-size: 1.15rem;
    }
  .stack-container {
    gap: 42px;
    justify-content: center;
  }
  .stack-container button{
    height: 34px;
    font-size: 1.5rem;
    width: 70px;
  }
  .input-text{
    width: 110px;
    height: 50px;
    font-size: 2.75rem;
  }
  .verify-btn{
    width: 110px;
    font-size: 1.5rem;
    height: 70px;
  }
  }