@font-face {
  font-family: 'u';
  font-weight: bold;
  src: url('font/u-b.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'u';
  font-weight: normal;
  src: url('font/u-r.ttf') format('truetype');
  font-display: swap;
}

:root {
  --background: rgba(233, 233, 233, 0.12);
  --gray-light: #6a7681;
  --highlight: #7ab700;
  --font: 'u', Arial, Helvetica, sans-serif;
  --indent: 2vw;
}

body {
  font-family: var(--font);
  background: var(--background);
  font-size: 16px;
  margin: 0;
}

h2 {
  color: var(--gray-light);
  font-weight: normal;
  font-size: 1.1rem;
}

h3 {
  font-weight: normal;
  color: var(--highlight);
}

h3,
p {
  margin: 0;
  padding: 0;
}

button {
  padding: 20px 30px;
  background: black;
  color: white;
  -webkit-appearance: none;
  font-size: 1.1rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  margin: 30px 0px;
}

section,
main {
  padding: 0px calc(50vw - 600px);
}

section.header {
  background: white;
  border-bottom: 2px solid #f3f3f3;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.header .inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px var(--indent);
}

content {
  /* border: 2px solid #f3f3f3;
  background: white; */
  border-radius: 25px;
  text-align: center;

  margin: 40px var(--indent);
  padding: 40px 5vw;
  display: block;
}

content h1 {
  text-align: center;
  text-transform: uppercase;
  line-height: 4.5rem;
  font-size: 3rem;
}
content h1 span {
  color: var(--gray-light);
  padding: 4px 10px;
  opacity: 0.5;
}

content > * {
  margin: 25px 0px;
}

article {
  text-align: left;
}

article p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: var(--gray-light);
}

footer {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

footer a {
  border-bottom: 1px dotted black;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--gray-light);
}

.intro-text {
  margin: 100px 0px;
}

.intro-text p {
  text-align: center;
  color: black;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-style: italic;
}

.intro-text p span {
  color: var(--gray-light);
}
