html{
    font-size: 100%;
}

body{ /*Overall body styling and padding*/
    font-size: 100%;
    margin: 0;
    padding: 1%;
  background-color:#FE621D;
  background-image: url("images/bg.png");
  margin-right: auto;
  margin-left: auto;
  background-position: 0px 0px;
  background-size: auto;
}
/* Overall Text Styling Start */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 400%;
    line-height: 44px;
    margin-top: 20px;
    color: #F4D35E;
}
h2 {
    font-family: 'Baloo 2', sans-serif;
  color: #fff;
  font-size: 400%;
  line-height: auto;
  margin-top: 20px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
p {
    font-family: 'Inter', sans-serif;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}
/* TEXt Styling end */
/* Page Load Animation */



/* Button Animation Start */
.pulsate-bck:hover {
	animation: pulsate-bck 0.3s ease-in-out 2 both;
}

 @keyframes pulsate-bck {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  
/* Button Anmation End */

/*Index Webview*/
.headerblock{
    text-align: center;
    margin: auto;
    width: 50%;
    padding: 2%;
}

/* Main Page Grid */
.landing-grid {
    padding: 10%;
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(3, 1fr); 
    grid-column-gap: 16px;
    grid-row-gap: 16px; 
    }
    .div1 { grid-area: 1 / 1 / 3 / 3; } 
    .div2 { grid-area: 1 / 3 / 2 / 5; } 
    .div3 { grid-area: 2 / 3 / 3 / 4; } 
    .div4 { grid-area: 2 / 4 / 3 / 5; } 
    .div5 { grid-area: 3 / 1 / 4 / 5; } 

/* Main Page Footer */
.tagfooter {
    position: fixed;     
    text-align: center;    
    bottom: 0px; 
    width: 100%;
    font-family: 'Amatic SC', sans-serif;
    font-size: 32px;
    font-weight: 700;
  }

/* Start button dawg i needa better way of doing this */
  .startbutton {
    width: 150px;
	background-color:#f4d35e;
	border-radius:28px;
	border:1px solid #0a0000;
	display:inline-block;
	cursor:pointer;
	color:#000000;
    font-family: 'Baloo 2', cursive;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
}
.startbutton:hover {
	background-color:#000000;
    color: #fff;
}
.startbutton:active {
	position:relative;
	top:1px;
}
/*Hair type Webview*/

.hairtextures{
    display: flex;
    justify-content: center;
}
.textures-p{
    display: flex;
    justify-content: center;
    font-size: 20px;
}
.columns { 
    padding: 5%;
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: 1fr; 
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
    }
    .column1-texture { grid-area: 1 / 1 / 2 / 2; } 
    .column2-texture { grid-area: 1 / 2 / 2 / 3; } 

.texture-buttons { 
    display: grid; 
    padding-top: 10%;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(4, 1fr); 
    grid-column-gap: 0px;
    grid-row-gap: 10px; 
    }
    .kinky { grid-area: 1 / 1 / 2 / 2; } 
    .curly { grid-area: 2 / 1 / 3 / 2; } 
    .wavy { grid-area: 3 / 1 / 4 / 2; } 
    .straight { grid-area: 4 / 1 / 5 / 2; } 


/* MOre Buttons this seems inefficent tbh watch video n replace */
.kinkybutton {
    background-color:#f4d35e;
    border-radius:28px;
    border:1px solid #0a0000;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:15px;
    padding:16px 47px;
    text-decoration:none;
}

    .kinkybutton:active {
        position:relative;
        top:5px;
    }
    
.curlybutton {
    background-color:#f4d35e;
    border-radius:28px;
    border:1px solid #0a0000;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:15px;
    padding:16px 47px;
    text-decoration:none;
}

.curlybutton:active {
    position:relative;
    top:5px;
}

.wavybutton {
    background-color:#f4d35e;
    border-radius:28px;
    border:1px solid #0a0000;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:15px;
    padding:16px 47px;
    text-decoration:none;
}

.wavybutton:active {
    position:relative;
    top:5px;
}

.straightbutton {
    background-color:#f4d35e;
    border-radius:28px;
    border:1px solid #0a0000;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:15px;
    padding:16px 47px;
    text-decoration:none;
}

.straightbutton:active {
    position:relative;
    top:5px;
}

.explorebutton {
    background-color:#f4d35e;
    border-radius:28px;
    border:2px solid #ffffff;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:24px;
    padding:16px 47px;
    text-decoration:none;
}

.explorebutton:active {
    position:relative;
    top:5px;
}

.explorebutton:hover{
    background-color: black;
}

.explore{
    display: flex;
    justify-content:center ;
    margin-top: -2%;
}

.back{
    display: flex;
    justify-content:center ;
}

.backbutton {
    background-color:#000000;
    border-radius:28px;
    border:2px solid #ffffff;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size:24px;
    padding:16px 47px;
    text-decoration:none;
}

.backbutton:active {
    position:relative;
    top:5px;
}

/* Button End */

/* Center Typers dicws Psudo class */
.pg > div{
    padding: 1%;
    display: flex;
    justify-content: center;
}

.care{
    font-size: 75%;
    text-align: center;
}
.porosity{
    margin: 10%;
}
/*Tablet view index*/
@media screen and (max-width: 768px){
    .wrapper{
        display:flex;
        flex-direction: column;
     
    }

    .paragraph-2{
        padding: 5%;
        font-size: 80%;
        text-align: center;
    }
    .startbutton{
        margin: auto;
    }
    .tagfooter{
        font-size: 75%;
    }

    .image-2{
        width: 100%;
    }
    #intro-head{
        font-size: 250%;
        line-height: normal;
        text-align: left;
    }

    .landing-grid {
        padding: 10%;
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(3, 1fr); 
    grid-column-gap: 16px;
    grid-row-gap: 16px; 
    }
    .div1 { grid-area: 1 / 1 / 3 / 3; } 
    .div2 { grid-area: 1 / 3 / 2 / 5; } 
    .div3 { grid-area: 2 / 3 / 3 / 4; } 
    .div4 { grid-area: 2 / 4 / 3 / 5; } 
    .div5 { grid-area: 3 / 1 / 4 / 5; } 

    .hairtextures{
        font-size: 200%;
    }

}
/*Mobile view*/
@media screen and (max-width: 479px){
    .wrapper{
        display:flex;
        flex-direction: column;
     
    }

    .heading-3{
        padding: 5%;
        order: 3;
        font-size: 100%;
    }

    .paragraph-2{
        padding: 5%;
        font-size: 50%;
        text-align: center;
    }
    .startbutton{
        margin: auto;
    }
    .tagfooter{
        font-size: 75%;
    }

    .image-2{
        width: 75%;
    }
    #intro-head{
        font-size: 100%;
        line-height: normal;
        text-align: center;
    }

    .landing-grid {
        display: grid; 
        grid-template-columns: repeat(4, 1fr); 
        grid-template-rows: repeat(1, 1fr); 
        grid-column-gap: 16px;
        }
        .div1 { grid-area: 1 / 1 / 2 / 4; } 
        .div2 { grid-area: 2 / 2 / 3 / 4; } 
        .div3 { grid-area: 3 / 3 / 4 / 4; } 
        .div4 { grid-area: 4 / 3 / 5 / 4; } 
        .div5 { grid-area: 5 / 1 / 6 / 4; } 
    
/* Txture Staert*/
img {
    height: 100%;
    width: 100%;
    object-fit: contain;
   }

.img-block{

    height:300px;
    width: 300px;
}
.columns { 
    padding: 5%;
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: 1fr; 
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
    }
    .column1-texture { grid-area: 1 / 1 / 2 / 2; } 
    .column2-texture { grid-area: 2 / 1 / 3 / 2; } 

    .column2-texture{
        display: flex;
        justify-content: center;
        padding-bottom: 5%;
     }
     
     .explorebutton{
         margin-top: 10%;
         font-size: 10px;
     }
     /*TexturesEnd*/

.care{
    font-size: 40%;
    
}
.porosity-test{
    font-size: 40%;

}

.pg > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


}