:root{
    --background:#ffffff;
    --foreground:#090979;
    --primary:#141c3c;
    --primary-light:#cdd3eb;
    --primary-foreground:#ffffff;
    --secondary:#5be8b9;
    --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%;
}
.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);
}