html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
}

a:hover {
  cursor: pointer;
}
:root {
  --BG-color: #161121;
  --Button-color: #38304a;
  --2nd-color: #362a4f;
  --3rd-color: #440d55;
}
body {
  margin: 0;
  background-color: var(--BG-color);
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
}

button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Button-color);
  height: 40px;
  width: 100%;
  border-radius: 10px;
}
section {
  min-height: 100vh;
}
h1 {
  font-size: 10em;
}
h2 {
  font-size: 3em;
}
p {
  font-size: 2em;
}
li {
  font-size: 2em;
}
a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
nav {
  display: flex;
  align-items: flex-end;
}
footer {
  width: 100%;
  height: 20vh;
  background-color: #09070d;
  margin-top: 20px;
}
.footer-container {
  padding-top: 5vh;
  padding-left: 20px;
}

footer h4 {
  font-size: 1.7em;
}
footer p a {
  color: white;
}
footer p a :hover {
  color: var(--2nd-color);
}
@media (max-width: 650px) {
  p {
    font-size: 1.5em;
  }
}
