html,
body {
    margin: 0;
}

html {
    --body-color: #202020;
    --primary: #1d2473;
    --secondary: #4a6bee;
    --accent: #4aeec9;
    --bg: #fffaf8;
    --glegoo: 'Glegoo', Arial, sans-serif;
}

body {
    background-color: var(--bg);
    background-image: url(../img/natural-paper.png);
    background-repeat: repeat;
    font-family: var(--glegoo);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--body-color, #202020);
}

h1 {
    font-family: var(--glegoo);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

a {
    color: var(--body-color);
    transition: ease linear;
}
a:hover,
a:focus {
    color: var(--primary);
}
img {
    width: 100%;
    height: auto;
}
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
}
.btn {
    position: relative;
    display: inline-block;
    margin-block-start: 2rem;
    background: none;
    padding: 0.5rem;
    text-decoration: none;
    font-family: var(--glegoo);
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--body-color);
}
.btn:hover,
.btn:focus {
    color: var(--primary);
}
.btn span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 0.1em;
	pointer-events: none;
}
.btn svg {
    position: absolute;
    inset: -10%;
    z-index: -1;
    overflow: hidden;
	margin: auto;
	padding: 0;
	width: 100%;
	height: 100%;
    fill: none;
	stroke-width: 28px;
	stroke-dasharray: 300;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 0.5s linear;
	will-change: stroke-dashoffset;
	pointer-events: none;
}
.btn:hover > svg {
    stroke-dashoffset: 300;
}
.l-wrapper {
    min-height: 100dvh;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.l-grid {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.l-grid > div {
    max-width: 620px;
    margin-inline: auto;
    text-align: center
}
@media screen and (min-width: 1200px) {
    .l-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .l-grid > div {
        text-align: start;
    }
}
.c-brand {
    display: inline-block;
    margin-block-start: 0.5rem;
    margin-block-end: 2rem;
}

