* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primaryColor: #111111;
    --secondaryColor: #FFE8C4;
}

html {}

body {
    margin: 0;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6, p, caption, a {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 300ms;
}

a:hover {
    opacity: 0.6;
} 

a.link {
    text-decoration: underline;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ul dt, ul dd, dl li, dl dt, dl dd {
    margin: 0;
    display: block;
    height: fit-content;
}

dl dd {
    margin-bottom: 1em;
}

table th, table tr, table td {
    text-align: left;
}

small {
    font-size: 60%;
}

strong {
    font-weight: 500;
}

address {
    font-style: normal;
}

figure {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
    
    transition: 300ms;
    /* background-color: var(--secondaryColor); */
}

.blur-el {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    transform: translate3d(0, 0, 0);
    transition: 600ms 200ms ease;
}

img.blur-el {
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blur-el.active {
    -webkit-filter: blur(10px);
    filter: blur(0);
}

img.expand {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.rounded {
  border-radius: 2px;
}

video {
    width: 100%;
    height: auto;
}

caption {
    text-align: left;
}

::selection {
    background-color: rgb(50, 50, 50);
    color: white;
}


canvas {
    transform: rote;
}