*,
html {
  margin;0
  padding;0
}
body {
  background-color: #1e1e1e;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  color: lightblue;
}

nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 13px;
  transition: color 0.3s ease;
}

nav a i {
  margin-right: 6px;
}

nav a:hover {
  color: #00ffcc;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 13px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* bayangan teks */
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.2); /* bayangan kotak */
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover {
  color: #00ffcc;
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.5); /* efek glow saat hover */
  background-color: rgba(255, 255, 255, 0.1); /* efek latar belakang saat hover */
}

.container-content {
  height: 65vh;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a-content {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.img-content {
  widht: 300px;
  height: 300px;
  border-radius: 55px;
}

.container-footer {
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}

.h1-footer {
  font-size: 20px;
}