html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}      

@import url('https://use.typekit.net/eus2zga.css');
html, body{
    font-family: "adobe-jenson-pro",serif;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    font-family: "adobe-jenson-pro",serif;
}
.landing {
    min-height: 100vh;
    background-image: url('./img/bg.webp');
    background-color: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}
.landing .heading {
    font-weight: 300;
    font-style: normal;
    font-size: 44px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    text-align: right;
}            
header {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: right;
}

header h1 span {
    font-size: 0;
    width: 0;
    height: 0;
}

footer {
    padding: 30px 0;
    width: 100%;
    text-align: right;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: end;
    align-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
footer .footer-inner a {
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #fff;
    text-decoration: none;
}      

@media only screen and (max-width: 600px) {
  .landing .heading {
    font-size: 36px;
  }
}
