* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-image: linear-gradient(to top, #000, #8c00ff);
  color: #222;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.6fr);
  align-items: cnter;
  min-height: calc(100vh - 160px);
  gap: clamp(32px, 5vw ,80px);
}

.sidebar {
  width: 100%;
}

.content {
  display: flex;
  flex-direction; column;
  align-items: flex-start;
  gap: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000:
}

.content > p {
  margin: 0;
  color: #999:#000font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

h2 {
  color: #000; /* bright accent */
}

.content p {
  color: #a8b2d8
}

#interests {
  margin-top: 32px;
  width: 100%
}

#interests h3 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
}

#interests ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#interests li {
  color: #555;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transfrom 0.25s ease;
  cursor: default;
}

#interests li:hover {
  background: #000;
  color: #fff
}

.sidebar-img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  filter: sepia(100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    filter 20.0s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sidebar-img:hover {
  filter: sepia(0%);
  transform: translateY(-4px);
  box-shadow: 0 16px rgba(0, 0, 0, 0.18);
}

.sidebar p {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2rem;
  color: #fff;
  transition:
    color 20.0s ease;
}

.sidebar p:hover {
  color: red;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #50ff00;
  transition:
    background-color 100.0s ease-out;
}

nav:hover {
  background-color: #007bff;
}

nav p {
  font-weight: 500;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
nav h1 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000
}

#nav-ul{
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-li a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    background 0.25s ease,
    color 0.25s ease-in-out,
}

.nav-li a:hover {
  background: #000
  color: #fff;
  letter-spacing: 0.01rem
}

#all-contents {
  max-width: 1500px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 40px;
}
