:root {
  --main-color: rgb(94, 136, 73);
  --main-color-dark: rgb(58, 88, 44);
  --border-color: hsla(0, 0%, 100%, 0.349);
  --copy-ip-hover: rgba(255, 255, 255, 0.102);
  --copy-ip-click: rgba(255, 255, 255, 0.2);
  --background-color: rgb(12, 13, 14);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
p,
pre {
  margin: 1em 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 75%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: var(--background-color);
  opacity: 0.9;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2;
}

.bg::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}

h1 {
  color: white;
  font-size: 4.25rem;

  margin-bottom: 1.5rem;
}

p {
  color: white;
  font-size: 1.2rem;
  font-weight: 200;
  max-width: 40rem;
}

button {
  background-color: transparent;
  border: solid gray 1px;
  padding: 0.75rem 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: larger;
  margin-bottom: 0.5rem;
  transition: all 0.1s;
}

button svg {
  width: 1rem;
  height: 1rem;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

button:active {
  background-color: rgba(255, 255, 255, 0.2);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  background: var(--main-color);
  border: 2px solid var(--border-color);
  box-shadow: 0px 5px 0px var(--main-color-dark);
  border-radius: 1px;
  padding: 0.5rem 3rem;
  transition: all 0.1s;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

nav a:hover {
  box-shadow: none;
  transform: translateY(5px);
}

signature {
  font-style: italic;
  float: right;
  margin-top: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.modal-content {
  background-color: #333;
  margin: 10% auto;
  padding: 20px;
  border: 5px solid #888;
  border-radius: 1rem;
  width: 25%;
  height: 70%;
  overflow-y: auto;
  overflow-x: hidden;
}

@media only screen and (max-width: 786px) {
  .modal-content {
    width: 90%;
  }
}

.modal-text {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.1s;
  background-color: white;
  border-radius: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

li {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 786px) {
  h1 {
    padding-top: 4rem;
  }
  nav {
    flex-direction: column;
    padding-bottom: 4rem;
  }

  p {
    padding: 0 1rem;
  }

  .modal-content {
    width: 80%;
  }
}
