:root{
    --background:#ffffff;
    --foreground:#556c64;
    --primary:#141c3a;
    --primary-foreground:#ffffff;
    --secondary:#5be8b9;
    --second-foreground:#141c3a;
}

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

html{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%;
}

.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);
}