body {
  font-family: "Segoe UI Light", sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  opacity: 0.9;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: left;
  justify-content: left;
}

.profile-pic {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #999;
}

.title-info h1 {
  margin: 0;
  font-size: 26px;
}

.title-info p {
  margin: 5px 0 0;
  font-size: 16px;
  color: white;
}

main {
  padding-top: 160px;
  max-width: 1000px;
  margin: 0 auto;
}

.podaci {
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.podaci h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  padding-top: 10px;
}

.podaci-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.podaci-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #888;
}

.label {
  text-align: right;
  padding: 8px 15px 8px 0;
  font-weight: bold;
}

.value {
  text-align: left;
  padding: 8px 0 8px 15px;
}

.float-left {
  float: left;
  width: 120px;
  margin: 0 20px 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.float-right {
  float: right;
  width: 120px;
  margin: 0 0 20px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  opacity: 0.9;
}

a {
  text-decoration: none;
  color: #1a265a;
  font-family: Consolas, monospace;
}
