@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #030712;
  background: #ffffff;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  flex-grow: 1;
}

section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #030712;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.5;
  margin-top: 100px;
}

h1 {
  font-size: 30px;
  font-weight: 600;
}

h2 {
  font-size: 20px;
  font-weight: 500;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

li {
  font-size: 14px;
  text-align: left;
  margin-left: -10px;
  margin-bottom: 4px;
}
