:root{
    --background: #ffffff;
    --foreground: #479bc2;
    --primary: #141c3a;
    --primary-light: #cdd3eb;
    --primary-foreground: #fff;
    --secondary: #479bc2;
    --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);
}


