* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: aliceblue;
  letter-spacing: 0.5px;
}

body, html {
  font-family: 'Urbanist', sans-serif;
  scroll-behavior: smooth;
  background-color: #000;
  color: #fff;
}

.container {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: absolute;
  top: 10px;
  left: 25px;
  width: 90px;
  z-index: 100000;
}

.nav {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 18px;
  border-radius: 8px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav ul {
  list-style-type: none;
  font-family: "Dogjaw W01 Regular";
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 0;
}

.nav ul li a {
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #e62b2b;
}

.bio-header {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.overview {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
}

.bio-content h1 {
  font-size: 3.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 30px;
  color: rgb(233, 233, 186);
}

.bio-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bio-content p.management {
  margin-top: 40px;
  font-size: 1.1rem;
}

#o {
  font-size: 3rem;
}

.abj {
  float: left;
  padding: 30px;
  margin-left: 40px;
  width: 400px;
}

.calm {
  float: right;
  padding: 30px;
  margin-right: 40px;
  width: 400px;
}

.enco, .ss {
  margin-top: 40px;
}

.enco h2 {
  font-size: 3rem;
  padding: 20px;
  text-align: left;
}

.ss h2 {
  text-align: right;
  font-size: 3rem;
  padding: 20px;
}

.enco p {
  text-align: left;
}

.ss p {
  text-align: right;
}

.short {
  text-align: center;
  margin-bottom: 40px;
}

#a {
  width: 86%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  margin-top: 50px;
}

footer p {
  font-size: 0.9rem;
}

footer p a {
  color: #e62b2b;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}
