* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  font-size: 1.1rem;
}

body {
  background-color: #dbe1e8;
}

.maincontainer {
  margin: 3em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
  background-color: #7e53db;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.maincontainer .gamecontainer {
  display: -ms-grid;
  display: grid;
  background-color: #4694cc;
  height: 100%;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  text-align: center;
  -webkit-box-shadow: 0px 5px 10px 2px #083169;
          box-shadow: 0px 5px 10px 2px #083169;
  margin-bottom: 5rem;
}

.maincontainer .gamecontainer .scoreandlife {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.maincontainer .gamecontainer .scoreandlife .life {
  background-color: #7e53db;
  height: 50px;
  width: 150px;
  border-radius: 3px;
  padding: .7rem;
  text-align: center;
  color: white;
  -webkit-box-shadow: 0px 2px 0px 0px #3b1b48;
          box-shadow: 0px 2px 0px 0px #3b1b48;
  display: none;
}

.maincontainer .gamecontainer .scoreandlife .score {
  background-color: #8a56f9;
  color: white;
  border-radius: 1px;
  height: 50px;
  width: 100px;
  border-radius: 3px;
  padding: .2rem;
  text-align: center;
  -webkit-box-shadow: 0px 2px 0px 0px #3b1b48;
          box-shadow: 0px 2px 0px 0px #3b1b48;
}

.maincontainer .gamecontainer .gameboard {
  height: 400px;
  width: 650px;
  position: relative;
  background-color: white;
  margin: 0 3rem;
  border-radius: 3px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 1px 0px #290c29;
          box-shadow: 0px 3px 1px 0px #290c29;
  overflow: hidden;
}

.maincontainer .gamecontainer .fruitcatch {
  background-color: #3A86FF;
  text-align: center;
  width: 400px;
  height: 80px;
  -ms-grid-column-align: center;
      justify-self: center;
  border-radius: 3px;
  text-align: center;
  color: white;
  -webkit-clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.maincontainer .gamecontainer .reset {
  color: white;
  width: 100px;
  height: 35px;
  padding-top: .4rem;
  border-radius: 3px;
  background-color: #65b6e6;
  margin-bottom: 1rem;
  -ms-grid-column-align: center;
      justify-self: center;
  text-align: center;
  -webkit-box-shadow: 0px 2px 2px 0px #153135;
          box-shadow: 0px 2px 2px 0px #153135;
}

.maincontainer .gamecontainer .alert {
  top: 40px;
  position: absolute;
  height: 300px;
  left: 80px;
  width: 500px;
  border-radius: 1px;
  background-color: #dd6060;
  -webkit-box-shadow: 0px 2px 2px 0px #181e1f;
          box-shadow: 0px 2px 2px 0px #181e1f;
  display: none;
}

.boxshadow {
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-filter: drop-shadow(0px 4px 0px rgba(46, 43, 125, 0.5));
          filter: drop-shadow(0px 4px 0px rgba(46, 43, 125, 0.5));
}

.heartimage {
  width: 30px;
  height: 30px;
  margin: 0 5px;
}

.fruits {
  display: none;
  position: absolute;
  height: 50px;
  width: 50px;
}

@media screen and (max-width: 1100px) {
  .maincontainer {
    margin: 3em;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: -1;
    background-color: #a7b3bb;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .maincontainer .gamecontainer {
    display: -ms-grid;
    display: grid;
    background-color: #4694cc;
    height: 450px;
    width: 400px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3px;
    text-align: center;
    -webkit-box-shadow: 0px 5px 10px 2px #083169;
            box-shadow: 0px 5px 10px 2px #083169;
    margin-bottom: 5rem;
  }
  .maincontainer .gamecontainer .scoreandlife {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
  .maincontainer .gamecontainer .scoreandlife .life {
    background-color: #7e53db;
    height: 50px;
    width: 50px;
    border-radius: 3px;
    padding: .7rem;
    text-align: center;
    color: white;
    -webkit-box-shadow: 0px 2px 0px 0px #3b1b48;
            box-shadow: 0px 2px 0px 0px #3b1b48;
    display: none;
  }
  .maincontainer .gamecontainer .scoreandlife .score {
    background-color: #8a56f9;
    color: white;
    border-radius: 1px;
    height: 50px;
    width: 150px;
    border-radius: 3px;
    padding: .2rem;
    text-align: center;
    -webkit-box-shadow: 0px 2px 0px 0px #3b1b48;
            box-shadow: 0px 2px 0px 0px #3b1b48;
  }
  .maincontainer .gamecontainer .gameboard {
    height: 250px;
    width: 350px;
    position: relative;
    background-color: white;
    margin: 1rem;
    border-radius: 1px;
    text-align: center;
    -webkit-box-shadow: 0px 3px 1px 0px #290c29;
            box-shadow: 0px 3px 1px 0px #290c29;
    overflow: hidden;
  }
  .maincontainer .gamecontainer .fruitcatch {
    background-color: #3A86FF;
    text-align: center;
    width: 100px;
    height: 40px;
    -ms-grid-column-align: center;
        justify-self: center;
    border-radius: 3px;
    text-align: center;
    color: white;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .maincontainer .gamecontainer .reset {
    color: white;
    width: 100px;
    height: 35px;
    padding-top: .4rem;
    border-radius: 3px;
    background-color: #65b6e6;
    margin-bottom: 1rem;
    -ms-grid-column-align: center;
        justify-self: center;
    text-align: center;
    -webkit-box-shadow: 0px 2px 2px 0px #153135;
            box-shadow: 0px 2px 2px 0px #153135;
  }
  .maincontainer .gamecontainer .alert {
    top: 10px;
    position: absolute;
    height: 100px;
    left: 80px;
    width: 100px;
    border-radius: 1px;
    background-color: #dd6060;
    -webkit-box-shadow: 0px 2px 2px 0px #181e1f;
            box-shadow: 0px 2px 2px 0px #181e1f;
    display: none;
  }
  .boxshadow {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .heartimage {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}
/*# sourceMappingURL=style.css.map */