:root{
    --background: #b9a3f7;
    --foreground: #311170;
    --primary: #141c3a;
    --primary-light: #4E507A;
    --primary-foreground: #CDB7F5;
    --secondary: #7c52db;
    --secondary-foreground: #141c3a;
}

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

html{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%; /*a cada 1rem equivalente +ou- 10px*/
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.button{
    display: inline-block;
    border: 0.2rem solid var(--foreground);
    color: var(--foreground);
    border-radius: 1.5rem;
    padding: 0.8rem 1.5rem;
    transition: all ease .2s;
}

.button:hover{
    background-color: var(--foreground);
    color: var(--primary-foreground);
}



