@import './reset.css';
@import './variables.css';

@import '../component/Header/style.css';
@import '../component/Showcases/style.css';
@import '../component/Navigation/style.css';
@import '../component/Features/style.css';
@import '../component/Contents/style.css';
@import '../component/Testimonials/style.css';
@import '../component/CallToAction/style.css';
@import '../component/Ecommerce/style.css';
@import '../component/Pricing/style.css';
@import '../component/Forms/style.css';
@import '../component/Contacts/style.css';
@import '../component/Footer/style.css';



body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: var(--ff-sans);
}

h2{
    color: var(--clr-heading);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin: 0;
}

h3{
    color: var(--clr-heading);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

p{
  color: var(--clr-text);
  font-size: 18px;
}

.btn{
    width: fit-content;
    height: 4rem;
    color: var(--clr-light);
    border-radius: 30px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 1rem;
    padding: 0 2rem;
}

.btn--rose{
    background-color: var(--clr-pink);
    border: none;
}

.btn.btn--rose:hover{
    background-color: var(--clr-dark-pink);
}

.btn.btn--rose:active{
    background-color: var(--clr-darker-pink);
}

.btn--vert{
    background-color: var(--clr-green);
    border: none;
}

.btn.btn--vert:hover{
    background-color: var(--clr-dark-green);
}

.btn.btn--vert:active{
    background-color: var(--clr-darker-green);
}

.btn--blanc{
    background-color: var(--clr-light);
    border: solid var(--clr-dark-grey) 2px;
    color: var(--clr-heading);
}

.btn.btn--blanc:hover{
    background-color: var(--clr-dark-grey);
}

.btn.btn--blanc:active{
    background-color: var(--clr-darker-grey);
}

.btn--bleu{
    background-color: var(--clr-btnblue);
    border: none;
}

.btn.btn--bleu:hover{
    background-color: var(--clr-dark-btnblue);
}

.btn.btn--bleu:active{
    background-color: var(--clr-darker-btnblue);
}


.upbtn--on{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    rotate: -90deg;
    background: var(--clr-btnblue);
    border-radius: 50%;
    cursor: pointer;
    scroll-behavior: smooth;
}

.upbtn--on:hover{
    background: var(--clr-dark-btnblue);
}

.upbtn--on:active{
    background: var(--clr-darker-btnblue);
}