body {
    background-color: #0d0d0d;   
    color: #e0e0e0;            
    font-family: "Century Gothic", "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar {
  list-style-type: none;
  margin: 20px auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  background-color: #0d0d0d;
  border-radius: 8px;
  width: max-content;
}

.navbar li a {
  display: block;
  color: #ff4d6d;
  text-decoration: none;
  padding: 10px 15px;
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.navbar li a:hover {
  background-color: #141414;
  color: #00f5d4;
  border-radius: 5px;
  text-shadow: 0 0 5px #00f5d4;
}

h1, h2, h3 {
    color: #00f5d4; 
    text-shadow: 0 0 10px #00f5d4;
}

a {
    color: #ff4d6d;  
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9f1c; 
    text-shadow: 0 0 5px #ff9f1c;
}

button {
    background-color: #1a1a1a;
    color: #7cffcb;            
    border: 2px solid #7cffcb;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #7cffcb;
    color: #1a1a1a;
    box-shadow: 0 0 10px #7cffcb;
}

.card {
    background-color: #141414;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    color: #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    text-align: center; 
}
