@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/OpenSans.ttf')  format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

:root {
  --pri: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

header {
  display: flex;
  padding: 2rem 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

header img {
  width: 90%;
  max-width: 300px;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  list-style-type: none;
}

header a {
  display: block;
  text-decoration: none;
  color: inherit;
  font: inherit;
  color: #000;
  text-transform: uppercase;
  transition: opacity .2s;
}

header a:hover,
header a:focus {
  opacity: .5;
}

header li:last-child a {
  display: flex;
  padding: 0.75rem 1rem;
  border: 2px solid #1B822E;
}

footer {
  display: flex;
  padding: 1.3125rem 0rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  background: #404040;
  color: #FFF;
  font-weight: 600;
  text-align: center;
}

footer a {
  font: inherit;
  color: inherit;
}