/**
 * Fonts
 */
@font-face {
    font-family: TiltNeon;
    src: url('../assets/tiltneon.ttf');
}

/**
 * Animations
 */
@keyframes bob {
    from { transform: translateY(0); }
    to { transform: translateY(1vh); }
}

/**
 * Variables
 */
:root {
  /* Primary UI/display font */
  --font-primary: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Noto Sans', 'Liberation Sans', sans-serif;

  /* Keep TiltNeon as accent */
  --font-accent: TiltNeon;
}


/**
 * Global Styling
 */
html, body {
    margin: 0;
    padding: 0;
}

html, body { overflow-anchor: none; }


body {
    height: 100vh;
}

h1, h2, p, ul, a {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
}

button.primary {
    /* Specify font-size, margin, and padding for specific use case. */
    border: 2px solid #DBE4EE;
    border-radius: 10px;
    color: #DBE4EE;
    font-family: var(--font-primary);
    background-color: #DB5461;
    transition: background-color 0.25s;
}
button.primary:hover {
    cursor: pointer;
    background-color: #de6874;
}
button.primary:focus { outline: none; }

div.tint {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.4;
}