@import "./font.css";

:root {
    --global-background:
        fixed
        center/100dvw 100dvh
        linear-gradient(in oklch to bottom right, 
            oklch(65% 0.22 355) 0%, 
            oklch(65% 0.22  35) 100%);
    --global-background-lighter:
        fixed
        center/100dvw 100dvh
        linear-gradient(in oklch to bottom right, 
            oklch(80% 0.1 355) 0%, 
            oklch(80% 0.1  35) 100%);
}

* {
    box-sizing: border-box;
}
button {
    font: inherit;
}

body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    max-width: 90rem;
    margin: 0 auto;
    padding: 1.5rem;
    font-family: "Montserrat";
    font-size: 1rem;
    font-weight: 450;
    /* background: linear-gradient(to bottom,
            #FEE 0%,
            #FCC 100%); */

    background: linear-gradient(in oklch to bottom right,
            oklch(35% 0.13 355) 0%,
            oklch(35% 0.13  35) 100%);
}
