

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0e1a40;
  font-family: 'Poppins', sans-serif;
  color: #cbd6ff;
  line-height: 1.6;
}

header h1 {
  text-align: center;
  color: #a3baff;
  margin-top: 80px;
  font-size: 2.5rem;
}

.navbar {
  background-color: #050d28;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar a {
  color: #a3baff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #5e80ff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 40px;
}

h2 {
  color: #d0e0ff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p {
  text-align: justify;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #e0e8ff;
}

img {
  width: 150px;
  height: auto;
  float: left;
  margin: 10px 20px 20px 0;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.info-box {
  background-color: #091435;
  border-left: 5px solid #233e95;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

  footer {
    background-color: rgba(20, 42, 63, 0.95);
    padding: 20px;
    text-align: center;
    margin-top: 50px;
  }

  footer p, footer a {
    color: #ffffff;
    text-align: center;
    font-size: 0.95em;
  }

  footer a {
    color: #4b2e83;
    text-decoration: none;
    margin: 0 12px;
  }

    .footer-icons a {
    margin: 0 10px;
    font-size: 1.2em;
    color: #6b59d3;
  }

  .footer-icons a:hover {
    color: #ffd700;  }

a[target="_blank"] {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background-color: #3d3d5c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

a[target="_blank"]:hover {
  background-color: #5e5e8a;
}