/* This file conatins the main css of the body etc */

* {
    padding: 0;
    margin: 0;
    position: relative;
    font-family: "Nunito", "Poppins", "Rubik", system-ui, sans-serif;
}

/* Body */
body {
    min-height: 100vh;
    min-width: 100vw;
    background: linear-gradient(135deg, #E8E1D5, #D6C7B0);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}