@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

:root{
    --background: #F7EBE8;
    --foreground: #E54B4B;
    --primary: #1E1E24;
    --primary-light: #444140;
    --primary-foreground: #F7EBE8;
    --secondary: #FFA987;
    --secondary-foreground: #1E1E24;
}

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

html{
    font-family: SUSE ,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);
}