html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body {
    background-color: #fffcf3;
    font-family: 'Poppins', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
}

.nav {
    position: sticky;
    top: 0;
    background-color: #fffcf3;
    z-index: 100;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    border: 2px solid #fdc85f;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: #fdc85f;
    font-weight: 600;
}

.menu a {
    color: #333333;
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 500;
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.profile-column {
    flex: 0 0 160px;
}

.text-column {
    flex: 1;
}

h1 {
    font-size: 3rem;
    color: #fdc85f;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 500;
    color: #333333;
    margin-bottom: 2rem;
}

p {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.profile-image {
    width: 175px;
    height: 175px;
    margin: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fdc85f;
}

.icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
    gap: 1.5rem;
}

.icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    font-size: 0.85rem;
    color: #33333363;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.footer-name {
    font-weight: 600;
    color: #33333363;
}

.footer-tagline {
    font-style: italic;
    color: #33333363;
}

.footer-links a {
    color: #33333363;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fdc85f;
}

.github {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733553.png');
}

.linkedin {
    background-image: url('https://cdn-icons-png.flaticon.com/512/145/145807.png');
}

.email {
    background-image: url('https://cdn-icons-png.flaticon.com/512/732/732200.png');
}

