html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #0f0151;
}

header {
  margin: 15px 10px 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  min-width: 100%;
}

header nav {
  display: flex;
  gap: 50px;
}

header nav a {
  font-weight: 400;
  font-size: 20px;
  color: black;
  text-decoration: none;
}
header a img {
  width: 150px;
  height: 55px;
}
h1 {
  color: white;
  font-size: 60px;
  display: flex;
  justify-content: center;
}

section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section div {
  background-color: white;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

section h2 {
  font-size: 24px;
  color: #0f0151;
  margin-bottom: 15px;
}

section img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

section p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}
.facebook-link {
  font-size: 26px;
  color: #0f0151;
  text-decoration: none;
}
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-right: 15px;
}
@media (min-width: 1040px) {
  section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  section div {
    width: 48%;
  }
}
@media (max-width: 960px) {
  .nav-burger {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .burger {
    display: block;
  }
}
@media (max-width: 600px) {
  section {
    padding: 20px 10px;
  }

  section h2 {
    font-size: 22px;
  }

  section p {
    font-size: 16px;
  }
}
