*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f4f7fb;
  color:#333;
}

header{
  background:#0d6efd;
  color:white;
  text-align:center;
  padding:20px;
}

nav{
  background:#084298;
  text-align:center;
  padding:10px;
}

nav a{
  color:white;
  text-decoration:none;
  margin:0 15px;
  font-weight:bold;
}

nav a:hover{
  color:yellow;
}

.container{
  width:90%;
  max-width:1000px;
  margin:30px auto;
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

h2{
  text-align:center;
  color:#0d6efd;
  margin-bottom:20px;
}

.profile-img{
  display:block;
  margin:20px auto;
  width:250px;
  border-radius:10px;
}

table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

table, th, td{
  border:1px solid #ccc;
}

th{
  background:#0d6efd;
  color:white;
  padding:12px;
}

td{
  padding:10px;
}

.gallery{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.gallery img{
  width:300px;
  border-radius:10px;
  box-shadow:0 0 8px rgba(0,0,0,0.2);
}

.motto{
  margin-top:20px;
  background:#e9f2ff;
  padding:15px;
  border-left:5px solid #0d6efd;
  font-style:italic;
}

footer{
  background:#084298;
  color:white;
  text-align:center;
  padding:15px;
  margin-top:20px;
}

nav a.active {
  color: yellow;
}

body{
  background: linear-gradient(to right, #dbeafe, #f8fafc);
}

.container{
  animation: muncul 1s ease;
}

@keyframes muncul{
  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

nav{
  position:sticky;
  top:0;
  z-index:1000;
}

nav a{
  transition:0.3s;
}

nav a:hover{
  background:white;
  color:#0d6efd;
  padding:8px 14px;
  border-radius:8px;
}

table tr:hover{
  background:#eef4ff;
}

.profile-img{
  box-shadow:0 0 15px rgba(0,0,0,0.3);
  transition:0.3s;
}

.profile-img:hover{
  transform:scale(1.05);
}

.gallery img{
  transition:0.3s;
}

footer{
  font-weight:bold;
}
