*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
section {
    margin: 0;
}

p {
    text-align: justify;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img,
video {
    width: 100%;
    /* max-width: 25rem; */
    max-width: var(--card-max-width);
    /* max-height:fit-content; */
    display: block;
}

img,
video {
    min-width: 0;
    min-height: 0;
}

button {
    border: none;
    background: none;
    font: inherit;
}