* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
  background-color: #2f2e41;
  --font-j: "JetBrains Mono", monospace;
  --font-o: "Open Sans", sans-serif;
}

header {
  display: flex;
  justify-content: space-between;

  padding: 5rem;
}

ul {
  display: flex;
  gap: 3rem;
}

li {
  font-family: var(--font-j);
  font-weight: 500;
  font-size: 1.4rem;
  list-style: none;
  color: #ffffff;
}

li:hover {
  font-weight: 700;
  transform: scale(1.1, 1.1);
}

a {
  text-decoration: none;
}

main {
  display: flex;
  justify-content: space-around;

  margin-top: 8rem;
}

h1 {
  font-family: var(--font-j);
  font-weight: 700;
  font-size: 3.6rem;
  color: #fff;

  margin: 1rem 0 2rem 0;
}

.spn-color {
  color: #00bfa6;
}

p {
  font-family: var(--font-o);
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #c2c2c2;
}

.spn-bold {
  font-weight: 700;
}

#container-two {
  display: flex;
  flex-direction: column;
  gap: 3rem;

  text-align: center;

  width: 40vw;
}

footer {
  display: flex;
  justify-content: center;

  margin-top: 20vh;
}

footer p {
  font-family: var(--font-j);
  color: #fff;

  border-top: #00bfa6 solid 3px;

  padding-top: 3vh;
}

footer p a {
  color: #fff;
}

#padlock {
  position: fixed;
  left: 3vw;
  bottom: 3vw;
}
