@import url('https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@100;300;400;700;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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

:root{
    --letter:#232323;
    --primary:#ff0000;
    --secundary:#fff;
    --third:#F8F5F2;
}
.title{
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--letter);
}
.title-red{
    color: var(--primary);
}
p{
    color: var(--letter);
}
.button{
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    background-color: var(--primary);
    border-radius: 60px;
    text-decoration: none;
    color: var(--secundary);
}