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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fffcf3;
    font-family: 'Poppins', sans-serif;
    color: #333333;
}

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;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

h1 {
    font-size: 4.25rem;
    color: #fdc85f;
    margin: 0;
}

.subheader {
    color: #333333;
    font-weight: 700;
    font-size: 2rem;
    margin: 1rem 0 3rem 0;
}

.cta {
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-box {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    border: 2px solid #fdc85f;
    border-radius: 16px;
    background-color: #fffcf3;
}

.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');
}

