@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

body {
  background-color: #0a2749;
  font-family: 'Open Sans', sans-serif;
}

.container {
  max-width: 1280px;
  padding: 60px 15px;
  width: 95%;
  margin: 0 auto;
}

.logo {
  width: 100px;
  margin-bottom: 50px;
}

ul {
  list-style-type: none;
  padding-left: 0;

  counter-reset: item;
}

li {
  margin: 15px 0;
  font-weight: 600;
  font-size: 20px;
}

li a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

li a:hover {
  color: #1b5df1;
}

.custom-li {
  position: relative;
  padding-left: 40px;
  counter-increment: item;
}

.custom-li::after {
  content: counter(item);
  position: absolute;
  width: 20px;
  top: 0;
  left: 0;
  color: white;
}
