:root {
    --accent-primary: #e09ebb;
    --accent-secondary: 224, 158, 187;

    --dark-alert: 76, 70, 70;
    --dark-primary: 49, 49, 49;
    --dark-secondary: 33, 33, 33;

    --soft-black: 9, 9, 9;

    --white-alert: 255, 255, 255;
    --white-primary: 251, 251, 248;
    --white-secondary: 245, 245, 245;
}

::selection {
    background: rgba(var(--accent-secondary), 0.3);
    text-shadow: 0 0 5px var(--accent-primary);
}

*, html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    user-select: none;
}

body {
    background-color: rgb(var(--dark-secondary));
    color: rgb(var(--white-primary));
    font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    overflow: overlay;
    overflow-x: hidden;
}

main {
    font-size: x-large;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    gap: 5px;
}

.our {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

a {
    text-decoration: none;
    color: rgb(var(--white-primary));
}

p {
    font-family: monospace;
    font-size: small;
}