:root {
    font-size:16px;
    --font-regular:HelveticaNeue, Helvetica, sans-serif;
	--font-bold:HelveticaNeue-Bold, Helvetica, sans-serif;
}
/************************************/
header, main, footer, aside, section, article, nav, picture, video, hgroup {display:block}
*,::after,::before {margin:0;padding:0;box-sizing:border-box}
html,body {width:100%;height:100%}
img {border:none;font-size:10px}
a > img {display:block}
a {text-decoration:none}
/************************************/
@font-face {
	font-family: 'HelveticaNeue';
	src: url('../fonts/HelveticaNeue.woff2') format('woff2'),
		url('../fonts/HelveticaNeue.woff') format('woff'),
		url('../fonts/HelveticaNeue.ttf') format('truetype'),
		url('../fonts/HelveticaNeue.otf') format('opentype'),
		url("../fonts/HelveticaNeue.eot?#iefix") format("embedded-opentype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'HelveticaNeue-Bold';
	src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
		url('../fonts/HelveticaNeue-Bold.woff') format('woff'),
		url('../fonts/HelveticaNeue-Bold.ttf') format('truetype'),
		url('../fonts/HelveticaNeue-Bold.otf') format('opentype'),
		url("../fonts/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
/************************************/
body{
    /*background-color: #000;*/
    /*background: radial-gradient(#f69d3c, #3f87a6);*/
    background: radial-gradient(#aaa, #111);
    color:#fff;
    font-family:var(--font-regular);
    font-size:1rem;
}
main {
	margin: auto;
	padding: 1rem;
    width: clamp(320px, 75dvw, 1024px);
}
h1 {
    text-align: center;
    font-size: 2em;
    font-family: var(--font-bold);
}
section{
    margin:2rem auto;
    & > h2 {
        margin: 1rem auto;
        font-size: 1.5em;
        font-family: var(--font-bold);
    }
    & > p {
        margin: .5rem auto;
        font-size: 1em;
    }
    & address {
        text-align: center;
        & > p {
            margin: .75rem auto;
            font-size: 1.25em;
            & > a {
                color:#fff;
            }
        }   
    }
}