@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.divPai {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("Imgs/bg01.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: 'poppins', sans-serif;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .8));

}

h1 {
    /* font-family: 'Tinos', sans-serif; */
    z-index: 1;
    font-size: clamp(1.6rem, 8vw, 10rem);
    color: rgba(255, 255, 255, .95);
    text-align: center;
    margin-top: -1%;
    line-height: 1.4;
    font-weight: 600;
}

h2 {
    font-size: clamp(1.4rem, 4vw, 3rem);
    color: rgba(255, 255, 255, .9);
    z-index: 1;
    font-weight: 400;
}

p {
    z-index: 1;
    font-size: clamp(.8rem, 2vw, 1.4rem);
    text-align: center;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
}

@media (max-width:376px) {
    .divPai {
        background-position: 25% center;
    }
}