:root {
    /* Colors */
    --mrp-primary-color: ;
    --mrp-secondary-color: ;
    --mrp-body-color: #000;

    /* Fonts */
    --mrp-body-font-size: 1rem;
    --mrp-body-font-weight: 300;
    --mrp-body-strong-font-weight: 500;

    --mrp-body-heading-size: 1.5rem;
    --mrp-primary-font: 'Figtree', sans-serif;;
    --mrp-secondary-font: 'Figtree', sans-serif;;
}
* {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
abbr[title],
acronym[title] {
	text-decoration: none;
}
html {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html:focus-within {
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
body {
    color: var(--mrp-body-color);
    font-family: var(--mrp-primary-font);
    font-weight: var(--mrp-body-font-weight);
    font-size: var(--mrp-body-font-size);
    letter-spacing: 0.03em;
}
body strong,
body h1,
body h2,
body h3,
body h4,
body h5 {
    font-weight: var(--mrp-body-strong-font-weight);
}
body h1,
body h2 {
    font-size: var(--mrp-body-heading-size);
}
.grabber:hover {
    animation: animate-grabber 0.5s infinite;
}
.italic {
    font-style: italic;
}
.img-box {
    position: relative;
}
.img-box img {
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    position: absolute;
}
.img-box:after {
    content: '';
    display: block;
}
.img-box.cover img {
    object-fit: cover;
}
.img-box.contain img {
    object-fit: contain;
}
.img-box.square:after {
    padding-bottom: 100%;
}
.wrapper {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
body > article .content {
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body > article .content > * {
    padding-bottom: 1rem;
}
@keyframes animate-grabber {
    from {
        cursor: grab;
    }
    to {
        cursor: grabbing;
    }
}