 body {
            margin: 0;
            padding: 40px 20px;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }


        .container {
            max-width: 600px;
            margin: 0 auto;
            background: rgb(255, 255, 255);
            padding: 40px;
        }

        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .profile-img {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: .9;
            filter: saturate(0);
        }

        .profile-img:hover {
          opacity: 1;
          filter: saturate(1);
          cursor: pointer;
        }

        .nav {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;

        }

        .nav a {
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            letter-spacing: 0px;
            color: #333;
            font-weight: 600;
            font-family: 'DMSans';
        }
        
        .hey {
            font-weight: bold;
            font-family: 'DMSans';
            font-size: 21px;
        }

        .spacer {
          flex: 2;
        }

        .nav a:hover {
            color:brown;
            transition: .15s;
        }

        h1, h2 {
            font-family: 'DMSans';
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 0px;
            margin-bottom: 15px;
            color: #333;
        }


        p, li {
            font-family: 'DMSans';
            font-weight: 400;
            margin-bottom: 20px;
            font-size: 16px;
            letter-spacing: 0px;
        }

        ul {
          padding-left: 20px;
        }

        li {
          padding-left: 5px;
        }

        .project-link {
            color: brown;
            text-decoration: none;
        }

        .project-link:hover {
            font-weight: bold;
            transition: .2s;
        }

        .signature {
            margin-top: 40px;
        }

        .signature .name {
            color: brown;
            text-decoration: none;
        }

        .signature .name:hover {
            text-decoration: underline;
        }


.socials {
        font-family: 'DMSans';
            font-weight: 400;
            margin-bottom: 20px;
            font-size: 16px;
            letter-spacing: 0px;
}

.social-link {
  text-decoration: none;
  color: brown;
}

.social-link:hover {
  font-weight: 600;
}

.socials p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.end-pic {
  margin-top: 50px;
}



@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans/DMSans_18pt-Medium.ttf') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans/DMSans_18pt-Regular.ttf') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans/DMSans_18pt-SemiBold.ttf') format('woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans/DMSans_18pt-Bold.ttf') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Black.ttf') format('woff2');
  font-weight: 900;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Bold.ttf') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-ExtraBold.ttf') format('woff2');
  font-weight: 800;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Light.ttf') format('woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-ExtraLight.ttf') format('woff2');
  font-weight: 200;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Medium.ttf') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Regular.ttf') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-SemiBold.ttf') format('woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend/Lexend-Thin.ttf') format('woff2');
  font-weight: 100;
}











        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .nav {
                gap: 20px;
            }
            
        }
