/* ====== MENU ====== */
ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #c084fc, #a855f7);
  overflow: hidden;
}

ul.menu li {
  float: left;
}

ul.menu li a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: bold;
}

ul.menu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}


h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  text-align: center;
  color: #6b21a8;
  margin: 60px 0 20px 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  letter-spacing: 2px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  color: #680f83;
  margin: 40px auto 30px auto;
  border-bottom: 3px solid #6b21a8;
  display: inline-block;
  padding-bottom: 5px;
  text-align: center;
  margin-left: 20px;   
}


body {
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}


p {
  text-align: justify;
  font-size: 16px;
  max-width: 800px;
  margin: 15px auto;
  padding: 0 20px;
  line-height: 1.7;
}


img, iframe{
  display: block;
  margin: 20px auto;
  max-width: 250px;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}


table {
  border-collapse: collapse;
  width: 80%;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

table th, table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

table th {
  background: #c084fc;
  color: white;
}


form {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #c084fc;
  border-radius: 8px;
}

form input[type="submit"] {
  background: #a855f7;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form input[type="submit"]:hover {
  background: #6b21a8;
}

