/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 15px 30px;
  border-bottom: 1px solid #333;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.site-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0be5ec;
}

/* Nav */
nav ul.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  transition: 0.3s;
}

.menu a:hover {
  color: #0be5ec;
  background-color: #222;
  border-radius: 8px;
}

.icon {
  height: 20px;
  margin-right: 8px;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.dev-card {
  background-color: #111;
  border: 2px solid #0be5ec;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 20px #0be5ec;
  max-width: 500px;
}

.dev-card h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0be5ec;
}

.dev-card p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  color: #777;
}
