/* Normalize & reset basics */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {


    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background-color: #fff;

    background: green;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.25rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    margin: 0;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    border: none;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #005f8d;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

th, td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
}

figure {
    margin: 0;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
}
