:root {
    --bg-color: #f3f4f2;
    --text-color: #1E1E1E;
    --primary-color: #032753;
    --primary-color-transparent: #03275375;
    --animation-duration: 300ms;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Neo Sans Pro", Arail, 'system-ui';
}

body{
    width: 100vw;
    overflow-x: hidden;

    background-color: var(--bg-color);
    color: var(--text-color);
}

.container{
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}