@import url(https://fonts.googleapis.com/css2?family=Lato&display=swap);
.wave{
    position: fixed;
    bottom:0px;
    width: 100%;
    left:0px;
    max-height: 300px;    
    z-index: 0;
}

@media screen and (max-width: 400px){
    .wave{
        bottom:30px;
        transform:scaleY(3);
    }
}
.colorPanels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 10px 0px;
  position: relative;
  transition: 0.1s ease-in-out;
  border: transparent;
  cursor: pointer;
  outline: none;
  height: 100%;
  min-width: 235px;
}

.colorPanels::after{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  box-shadow: inset 0px 1px 10px #AAA;
  opacity: 0;
}

.colorPanels:hover:after{
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: panelHover;
}


.colorPanels p {
  position: absolute;
  top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  color: #322D2D;
}

.colorPanels img {
  position: relative;
  top: 20px;
  width: 100px;
  height: 100px;
}

.colorPanels:focus {
  animation-name: panelClick;
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes panelClick {
  0% {
    bottom: 0px;
    box-shadow: 0px 10px 0px rgba(50,50,50, 0.3);
  }

  100% {
    bottom: -10px;
    box-shadow: inset 0px 1px 10px #666;
  }
}

@keyframes panelHover {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@media screen and (max-width: 600px){
  .colorPanels img {
    width: 60px;
    height: 60px;
  }
  .colorPanels{
    min-height: 150px;;
    min-width: auto;
  }
  .colorPanels p{
    font-size: 20px;
  }
}

.tutorialText {
    max-width: 500px;
    background-color: rgb(240, 240, 240);
    color: #322D2D;
    padding: 25px;
    border-radius: 28px;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 19pt;
    text-align: left;
    width: 80%;
    min-width: 200px;
    height: 100%;

}

.tutorialHeader {
    margin-bottom: 35px;
}

#tutorialHeaderFirst {
    margin-top: 20px;
}
/* .backButton {
    border-radius: 50%;
    
    text-align: center;
    display: inline-flex;
    padding: 55px;
    font-size: 20px;
    width: 20px;
} */

#backArrow {
    width: 25px; 
    border-radius: 50%;
    background: #90E68E;
    padding: 13px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    transition: .1s ease-in-out;
    cursor: pointer;
}

#backArrow:hover{
    background: #70B26F;
}
.restartButton {
    display:flex;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1.2px;
    font-size: 18px;
    text-align: center;
    background: #FF5959;
    color: #FBFBFB;
    border-radius: 30px;
    padding: 12px 24px; 
    display: inline-flex;
    transition: .1s ease-in-out;
    cursor:pointer;
    left: 300px;
    top: 19px;
    height: 25px
}

.restartButton:hover{
    background-color: #CC4747;
}

.confirmButton_box {
  background-color: #ffa15c;
  display: inline-flex;
  border-radius: 38px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  width: 284px;
  min-height: 64px;
  margin: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  justify-content: center;
  color: white;
  transition: 0.06s ease-in-out;
}

.confirmButton_box:hover {
  background-color: #e47525;
}

.grayButton_box {
  background-color: #c7c7c7;
  display: inline-flex;
  border-radius: 38px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  width: 284px;
  min-height: 64px;
  margin: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  justify-content: center;
  color: white;
  transition: 0.06s ease-in-out;
  pointer-events: none;
}

.grayButton_box:hover {
  background-color: #c7c7c7;
}

.aboutButton_box {
  background-color: #b3e3ff;
  display: inline-flex;
  border-radius: 38px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  width: 284px;
  min-height: 64px;
  margin: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  justify-content: center;
  color: white;
  transition: 0.06s ease-in-out;
}

.aboutButton_box:hover {
  background-color: #7dd0ff;
}

.confirmButton_box_inner {
  text-align: center;
  justify-content: center;
  padding: 16px 30px 29px 30px;
  position: absolute;
  background: none;
  color: none;
}




h4 {
  margin: 15px 0px 0px 0px;
  font-size: 24pt;
}

h6 {
  margin-bottom: 35px;
  text-align: center;
  font-size: 24pt;
}

p {
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-size: 18px;
  padding: 0px 3px;
  margin: 1px 0px; 
  line-height: 19pt;
}

.resultText {
  text-align: center;
  padding-top: 15px;
}

.solutionBox {
  display: inline-flex;
  background-color: #edeeec;
  border-radius: 28px;
  margin: 0px 0px -10px;
  padding: 25px 50px 200px;
  width: 400px;
  height: auto;
}

.navBar {
  margin: 32px 0px 0px 280px;
}

.BananaMan {
  margin-bottom: -60px;
  margin-top: 20px;
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  padding: 50px 20px;
  background-color: rgb(255, 255, 255);

}




@media screen and (max-width: 450px){
  h4{
    margin-bottom: 0px;
  }
  h1{
    margin: 0px;
  }
  h6{
    font-size: 24pt;
  }
  .navBar{
    margin: 20px 0px;
  }
  .BananaMan {
    width: 225px;
  }
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #322D2D;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #4E5248;
    font-style: normal;
    font-weight: bold;
    line-height: 19pt;
    text-align: left;
    
}


h2 {
    font-size: 50pt;
}

h3 {
    font-size: 45pt;
}

h4 {
    font-size: 38pt;
}

h5 {
    font-size: 32pt;
}

h6 {
    font-size: 27pt;
}


.Textbox_box{
display: flex;
flex-direction: column;
align-items: center;
}

.textbox_box h6{
font-family: Poppins;
font-style: normal;
font-weight: bold;
font-size: 27px;
line-height: 40px;
text-align: center;


/* Black */

color: #322D2D;
}

.Textbox_box_par{
padding: 25px;
background: rgb(240, 240, 240);
border-radius: 28px;
font-family: 'Lato', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 19pt;
text-align: left;
width: 80%;
max-width: 500px;
min-width: 200px;
height: 100%;
color: #322D2D;

}

.logo {
    width: 22%;
    min-width: 150px;
    max-width: 300px;
    padding: 30px 0px 30px; 
}

.nameIcon {
  margin-top: 25px;
}

.subheading {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 25px;
  line-height: 1rem;
  margin-bottom: 0px;
}

.titleText {
  margin-top: 55px;
  margin-top: 35px;
  text-align: center;
}

.subheading{
  line-height: 1.8rem;
}

@media screen and (max-width: 600px){
    .logo{
      padding: 20px 0px 20px; 
    }
    .subheading{
      font-size: 1.4rem;
      margin: 20px;
    }
    .titleText{
      font-size: 1rem;
      margin-top: 5px;
    }
    .nameIcon{
      margin-top: 0px;
    }
    .homepage{
      justify-content: center;
      height: 100vh;
    }
  }
  
/* Global Color*/
:root {
  --main-blue: #7dd0ff;
  --main-green: #ceff7d;
  --main-orange: #ffa15c;
  --main-yellow: #fff27d;
  --main-black: #322d2d;
}

/*Fonts + Font Sizes*/
body{
  margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--main-black);
  font-family: "Poppins", sans-serif;
  max-width: 500px;
  min-width: 200px;
  width: 100%;
  text-align: center;
}

p {
  font-family: "Lato", sans-serif;
  color: var(--main-black);
}

h1 {
  font-size: 38pt;
  font-weight: 900;
  line-height: 1.2;
  margin: 20px;
}




/*Wrappers*/

.app {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

body{
  width: 100vw;
}
/* Color Panel */

.two-panel,
.four-panel {
  display: grid;
  grid-gap: 20px;
  width: 90%;
  height: 550px;
  margin: 30px;

}

.two-panel {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
}

.four-panel {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.nav-button-layout {
  display: flex;
  width: 90%;
  max-width: 560px;
  margin: 20px 0px 10px 0px;
  justify-content: space-between;
}

.mascot {
  margin: 60px;
}

.infoText {
  max-width: 500px;
  margin: 10px;
  text-align: center;
}

@media screen and (max-width: 600px){
  h4{
    font-size: 24pt;
  }
  h1{
    margin: 5px;
    font-size: 24pt;
  }
  .navBar{
    margin: 0px;
  }
  .four-panel{
    height:auto;
  }
  .two-panel{
    height: 320px;
  }
  .infoText{
    max-width: 300px;
  }
  h6{
    max-width: 330px;
  }


}


