:root{
    --bg-color: #25170E;
    --ffont-color: #fff;
    --header-color: #D59999;
    --white-bg-cl: #E0DEDE;
}
*{
    box-sizing: border-box;
    margin: 0;
}
body{
    background-color: var(--bg-color);
}
/*Styling the whole website*/
body #container{
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}
/*Declaring the general color*/
h2, p{
    color: var(--ffont-color);
}
h1, h3{
    color: var(--header-color);
}
/*Declaring General font-family*/
h1, h2, h3, h4{
    font-family: 'Cherry Bomb One', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
}
p{
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
}
/*styling the landing main section*/
main{
    position: relative;
    padding-top: 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
main h2{
    position: relative;
    font-size: 2rem;
    line-height: 26px;
    top: -80px;
}
main h1{
    font-size: 12rem;
    margin: -27% auto;
}
main img{
    margin: 0 25%;
    height: 440px;
    width: 480px;
    position: relative;
    z-index: 1;
}
/*Styling the about & partner section*/
.about, .partners, .puffnomics{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
}
h3{
    font-size: 2.5rem;
    margin: 20px auto;
}
.about p{
    font-size: 1.2rem;
    margin: 10px 20%;
    text-align: center;
    line-height: 23px;
}
/*Finalizing the partners section*/
.part{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 40px;
}
.part img{
    height: 65px;
    width: auto;
    justify-content: space-between;
}
/*Styling puffnomics*/
.puffnomics h4{
    color: var(--bg-color);
    font-size: 25px;
    text-align: center;
}
h4 span{
    font-size: 33px;
}
.puff-claw{
    margin: 5px 20%;
    display: flex;
    flex-direction: column;
}
/*Styling the first 4 claws container*/
.fclaw{
    margin-top: 15px;
    display: flex;
    height: 50ch;
    justify-content: space-between;
    gap: 30px;
}

/*Positioning settings claws*/
.bottom{
    align-self: flex-end;
}

/*Decaring general rule for each claws*/
.claw{
    width: 170px;
    height: 210px;
    padding: 20px;
    background-color: #E0DEDE;
    border-radius: 50% / 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Rotating each claws*/
.cl-1{
    transform: rotate(-12.5deg);
}
.cl-1 h4{
    transform: rotate(12.5deg);
}

.cl-2{
    transform: rotate(12.5deg);
}
.cl-2 h4{
    transform: rotate(-12.5deg);
}

.cl-4 {
    transform: rotate(18deg);
}
.cl-4 h4{
    transform: rotate(-18deg);
}

/*Adding l-claw*/
.l-claw{
    background-image: url(../Assets/iconn\ 1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    margin: -15% auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 450px;
    height: 450px;
    text-align: center;
    padding: 30px;
}
.l-claw h4{
    margin-top: 5%;
    max-inline-size: 300px;
    position: relative;
    top: 10px;
}
.l-claw p{
    margin-top: 25px;
    color: var(--bg-color);
    line-height: 2ch;
    position: relative;
    top: 8px;
}
.socials{
    margin-bottom: -10px;
    position: relative;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    width: 220px;
}

/*Moving to HOW TO BUY SECTION*/
section.preFooter{
    text-align: center;
    margin-bottom: 30px;
}
.instruction{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}
section.preFooter .inst{
    width: 300px;
    height: 250px;
    background-color: var(--white-bg-cl);
    border-radius: 50%;
    margin: 5px;
    padding: 15px 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inst h4, .inst p{
    color: #25170E;
}
