:root {
  --bg: #0e0c0b;
  --text: #eae7e4;
  --muted: #b5b0aa;
  --accent: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #1a1512, var(--bg));
  color: var(--text);
  min-height: 100vh;
}

/* Navbar */
.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: swoopUp 0.7s ease-out forwards;
}

@keyframes swoopUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }

}

.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav-links span {
  color: var(--muted);
  margin: 0 6px;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Main Content */
.container {
  max-width: 720px;
  margin: 120px auto 0;
  padding: 0 20px;
  animation: swoopUp 0.9s ease-out forwards;
}
@keyframes swoopUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }

}



h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
}

.wave {
  display: inline-block;
  animation: wave 1.5s infinite;
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(14deg); }
  40% { transform: rotate(-8deg); }
  60% { transform: rotate(14deg); }
  80% { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

a {
  color: var(--accent);
  text-decoration: underline;
}
.projectcon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap:15px;
  animation: swoopUp 0.9s ease-out forwards;
}
@keyframes swoopUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }

}


.divcontainer{
  background-color: rgb(30, 29, 29);
  border-radius: 10px;  
  min-height: 100px;
  flex: 1 1 600px;
  max-width: 600px;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
  padding-left: 10px;
  padding-top:5px;

}
.divcontainer a{
  color: var(--muted);
}

section{
  text-align: left;
  margin-left: 8px;
  margin-top:4px;
  margin-right: 8px;
}
/*.divcontainer:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 12px 30px rgba(77, 77, 77, 0.35);
}*/
.divcontainer p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.divcontainer a:hover{
  color: var(--accent);
}
.foot{
  margin-top:40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: swoopUp 1.1s ease-out forwards;
}

@keyframes swoopUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }

}

.backbutton{
  max-width: 1100px;
}
.containerproj{
  max-width: 720px;
  margin: 60px auto 0;
  padding: 0 10px;
}
.linkremover{
  text-decoration: none;
}