
body {
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #fff;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.logo {
  width: 400px;
  margin-bottom: 20px;
}

.logo .log {
  font-weight: bold;
  color: white;
  border-bottom: 3px solid white;
  padding-bottom: 5px;
  margin-right: 5px;
}

.logo .book {
  font-weight: bold;
  color: #d28c00; /* gold-like */
}

.subtitle {
  font-size: 1.2em;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 30px;
}

.highlight {
  font-weight: bold;
  color: #66ff66;
  margin-bottom: 30px;
  font-size: 1.2em;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease;
}

.contact {
  background-color: #d28c00;
}

.contact:hover {
  background-color: #a96f00;
}

.project {
  background-color: #5a4e18;
}

.project:hover {
  background-color: #403b14;
}

