:root {
  --ua-blue: #005bbb;
  --ua-yellow: #ffd500;
  --h1: 92px;
  --h2: 64px;
  --h3: 36px;
  --space: 60px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
    font-size: 20px;
    font-family: Roboto;
    margin:0;
}

h1 {
    font-size: clamp(3rem, -0.0714rem + 5.9524vw, var(--h1));
    font-weight: normal;
    max-width: 77%;
}
h2 {
  font-size: clamp(2rem, -0.0714rem + 5.9524vw, var(--h2));
    font-weight: bold !important;
}

h3 {
  font-weight: 400;
  font-size: var(--h3);
}

p {
    max-width: 80ch;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

b {
  font-weight: bold;
}

.btn {
  padding: .5em 1.3em;
  border: none;
  box-sizing: border-box;
  font-size: 100%;
  cursor:pointer;
  white-space: nowrap;
}

header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--space);
    gap: 1em;
}

nav {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
}

header a {
  text-decoration: none;
}

header a:hover {
  text-decoration: underline;
}

footer {
  height: 60px;
  display: grid;
  place-items: center;
  margin-inline: calc(-1*var(--space));
  border-top: 1px solid #eee;
  color: black;
  max-width: 100%;
}



.box {
  padding: 40px var(--space);
  max-width: 100%;
}



.yellow {
    background-color: var(--ua-yellow);
}
.blue {
    background-color: var(--ua-blue);
    color: white;
}

.btns {
  display: flex;
  gap: 1em;
}


blockquote {
  margin: 0;
}

blockquote p {
  padding: 15px;
  background: #eee;
  border-radius: 5px;
  font-style: italic;
  width:max-content;
  max-width: 100%;
  margin-bottom: .5em;
}

blockquote p::before {
  content: '\201C';
}

blockquote p::after {
  content: '\201D';
}

blockquote + figcaption {
  font-size: 80%;
}
ul > li {
  list-style-type: none;
}
.download-links {
  display: inline-flex;
  gap: 1em;
  margin-block:1em 2em;
  padding-left: 1em;
}
.download-links > a:before {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  display: inline-block;
  text-rendering: auto;
  --webkit-font-smoothing: antialiased;
  margin-right: .4em;
}
.box + img {
  width: 100%;
  max-width: 100%;
}