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

body {
    min-height: 100dvh;
    align-items: space-between;
    justify-content: space-between;
    margin: 0;
    padding: clamp( 20px, calc( 0px + 6.25vw ), 100px ); /* 20px to 100px, between 320 to 1600px */
    font-size: clamp( 16px, calc( 15.5px + 0.15625vw ), 18px );
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Arial, sans-serif;
    line-height: 1.5;
    color: #36073B;
}
.site {
    min-height: 100vdh;
    display: flex;
    flex-direction: column
}
.site-header,
.site-content,
.site-footer {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
}
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap; /* prevents line breaks */
	border: 0;
}

h1, .h1 {
    font-size: clamp( 24px, calc( 18px + 1.875vw ), 48px );
    font-weight: 600;
}
a {
    color: #154B7D;
    text-decoration-line: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer-ways {
    display: flex;
    flex-direction: column;
    gap: 0;

    p {
        margin: 0;
    }
}