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

body {
  background-color: #2C2B3D;
  font-family: 'JetBrains Mono', monospace;
  /* min-height: 100vh; */
  text-align: center;
}

#container {
  max-width: 1100px;
  margin: auto;
  padding-top: 71px;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}

header nav ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  transition: all .3s ease-out;
}

header nav ul li a:hover {
  color: #bdbcbc;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 82px;
  margin-top: 101px;
}

main section h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 59px;
}

span {
  color: #00BFA6;
}

strong {
  color: #C2C2C2;
}

main section p {
  font-family: 'Open Sans', sans-serif;
  line-height: 28px;
  color: #7D7987;
}

footer {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 23px;
}

footer a {
  transition: all .3s ease-in;
}

footer a:hover {
  color: #ffffffab;
}

footer .line {
  width: 568px;
  height: 0;
  border: 1px solid #00BFA6;
  margin: 157px auto 27px;
}

#padlock {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #c7c7c7;
}

::-webkit-scrollbar-thumb {
  background-color: #00BFA6;
}