@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');
/* Poppins e Koh Santepheap*/

:root{
    --background: #fff;
    --primary: #232323;
    --secondary: #FF0000;
    --secondary-background: #F8F5F2;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    color: var(--primary);
}

html{
    font-size: 62.5%;
    overflow-x: hidden
}

body{
    background-color: var(--background);
    font-family: Poppins, sans-serif;
    font-size: 2rem;
}

.container{
    margin: 7.5rem 20vw;
    display: flex;
    flex-direction: column;
    gap: 7.5rem;
}

.btn{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--background);
    background-color: var(--secondary);
    padding: 12px 40px;
    border-radius: 60px;
    text-align: center;
    cursor: pointer;
}

.btn:hover{
    opacity: 0.8;
}

.desc{
    max-width: 30vw;
}

.title{
    font-size: 4rem;
    font-weight: 400;
    font-family: Koh Santepheap;
    line-height: 120%;
}

.txt{
    line-height: 160%;
}

.row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}