:root {
    --primary-color: rgb(50, 150, 50);
    --neutral-color-1: #e8e8e8;
}

::selection {
    background-color: var(--primary-color);
    color: var(--neutral-color-1);
}

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

html,
body {
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--neutral-color-1);
    overflow-x: hidden;
    scroll-behavior: smooth;
    z-index: -2;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../img/Floriade_LOGO.webp") no-repeat left / contain;
    opacity: .05;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

main {
    flex: 1;
}

@keyframes fade-in-bottom {
    from {
        opacity: 0;
        transform: translateY(50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes clip-left-to-right {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}