/* About Layout

display: flex;
width: 829px;
height: 410px;
flex-direction: column;
justify-content: center; */

/* Typography

color: #FFF;
text-align: center;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;

*/


body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background: linear-gradient(#8398a2, #151A1C);
  background-attachment: fixed;
  background-size: cover;
  color: #ffffff;
  background-size: 100%;
  max-width: 100vw;
  overflow-x: none;
}

#about {
  display: flex;
  width: 829px;
  height: 410px;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 20px 60px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 1px 5px 10px grey;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 60px;
  max-height: 60px;
  object-fit: cover;
}

.profile img{
  width: auto;
  height: 200px;
  max-height: 200px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.nav-links img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 40px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.footer {
  text-align: left;
  padding: 30px 40px;
  background-color: #111;
  color: white;
  height: 3vh;
  width: 100%;
  bottom: 0px;
  box-shadow: 1px -5px 10px grey;
  left: 0px;
  overflow-y: scroll;
}

.code{
  font-size: 64px;
  font-weight: bold;
  font-family: monospace;
  margin: 10 auto;
  padding: 100px 20px 40px;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coder {
  font-size: 64px;
  font-weight: bold;
  font-family: monospace;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 20px 40px;
  text-align: center;
  margin: 0;
}

.sec {
  font-size: 64px;
  font-weight: bold;
  font-family: monospace;
  color: white;
}

.welcome-text {
  font-size: 20px;
  margin-top: 20px;
  color: #39ff14;
  font-family: monospace;
  background-color: #000;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}
      
.prompt {
  color: #39ff14;
  margin-right: 5px;
}

.subheading {
  font-family: monospace;
  font-size: 18px;
  margin-top: -10px;
  margin-bottom: 30px;
  color: white;
  letter-spacing: 0.5px;     
}

.project img {
  width: 300px;
  height: auto;
}  

.about-section {
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  
  margin: 0 auto;
  gap: 40px;
}

.about-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: white;
}

.about-text {
  flex: 1;
  font-family: monospace;
  font-size: 18px;
  
  color: white;
}

.about-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: white;
}

.project-grid{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.portfolio{
  height: calc(100vh - 200px);

}

.text-block {
  margin: 7vw;
  max-width: 800px;
  font-family: monospace;
  font-size: clamp(14px, 4vw, 32px);
  color: #fff;
}

.char {
  will-change: transform;
  display: inline-block;
}

@media screen and (max-width: 900px) {
  .top-nav {
  flex-direction: column;
  align-items: center;
}
  .nav-links {
  justify-content: center;
  }
}

