@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ebeaeb;
  box-shadow: 0.5px 0.5px 4px rgba(0, 0, 0, 0.03),
    -0.5px -0.5px 4px rgba(0, 0, 0, 0.03);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.socials {
  display: flex;
  border-radius: 50%;
}

.fa-brands {
  font-size: 1.5rem;
  margin: 0 0.4rem;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  padding: 20px;
  background-color: #f8f9fa;
}

.container {
  max-width: 800px;
  margin: 1rem auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  color: #555;
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  color: #666;
  font-size: 18px;
  margin-bottom: 15px;
}

ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #999;
}
