:root {
    --light: #E0E0E0; --dark: #1B1B1B;
    --primary: #071731; --primary-alt: #0C4A6E;
    --secondary: #DC143C;
    --warning: #B45309;
    --error: #B91C1C;
    --success: #15803D;
    --default: #333;
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    scroll-margin-top: 5em;
    outline: none; box-sizing: border-box;
    font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
} html {
    scroll-behavior: smooth;
} body {
    height: 100vh;
}

p, h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
}

a {
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: linear 0.2s;
} a:hover, a:focus {
    text-decoration: underline;
}

ul {
    list-style: none;
}

img, video {
    display: block;
    max-width: 100%;
}

label {
    cursor: pointer;
} input, select {
    padding: 0.1em 0.3em;
    border-radius: 3px;
    border: 1px solid #CCC;
} input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
} input[type=number] {
    -moz-appearance: textfield;
} textarea {
    padding: 0.1em 0.3em;
    resize: none;
    border-radius: 3px;
    border: 1px solid #CCC;
} button {
    padding: 0.1em 0.3em;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #CCC;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
} ::-webkit-scrollbar-track {
    background: #C1C1C1; 
} ::-webkit-scrollbar-thumb {
    background: #7C7C7C; 
} ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-alt); 
} ::placeholder {
    opacity: 0.7;
}

@keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
}

@-webkit-keyframes shine {
    from { -webkit-mask-position: 150%; }
    to { -webkit-mask-position: -50%; }
}
