@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: "SN Pro", sans-serif;
  margin: 0;
  padding: 0 4%;
  background: linear-gradient(180deg,#fbf4f4,#eceff7);
  color: #2b2b2b;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

header, div, footer {
  max-width: 1100px;
  margin: 26px auto;
  border-radius: 14px;
}

header {
  background-size: cover;
  background-position: center;
  padding: 70px 30px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

div {
  background: #ffffff;
  padding: 24px 30px;
  box-shadow: 0 10px 34px rgba(30,40,60,0.08);
}

footer {
  background: #111114;
  color: #dddddd;
  text-align: center;
  padding: 18px;
}

footer a {
  color: white;
}

h1 {
  font-size: 56px;
  margin: 0;
}

h3 {
  color: #3a3558;
}
p {
  margin: 0 0 14px 0;
}

li {
  font-size: 1.05rem;
}

#quotes {
  background: #e7e3f7;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

th {
  background: #f1effa;
  text-align: center;
  padding: 14px;
}

td {
  padding: 12px;
  border-top: 1px solid #e4e4e4;
}

tr:nth-child(even) td {
  background: #faf9ff;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

nav ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

nav li {
  list-style: none;
}

nav a {
  display: inline-block;
  padding: 10px 16px;
  background: #5a4ea3;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: .2s;
}

nav a:hover {
  transform: translateY(-3px);
  background: #463a8c;
}

button {
  background: #4a8f5a;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: .2s;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    font-size: 36px;
  }
}


