* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header h1 a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 600px) {
    nav {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    body {
        padding: 30px 20px;
        overflow-x: hidden;
    }
    .piece {
        max-width: 90%;
    }
}

body {
    background-color: #f5f0e8;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #362b28;
    min-height: 100vh;
    padding: 60px 40px;
}

header {
    margin-bottom: 60px;
    position: relative;
}

header h1 {
    font-size: 23px;
    font-weight: 250;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

header p {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #9a8f85;
    margin-top: 6px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 500px;
    max-width: 100%;
    margin-top: 40px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    border-bottom: none !important;
}

.instagram-link:hover {
    opacity: 0.6;
}

footer {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    padding-top: 20px;
}

.instagram-link {
    display: inline-flex;
    color: #362b28;
}

.instagram-link:hover {
    opacity: 0.6;
}
nav a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: #362b28;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    border-bottom: 1px solid #9a8f85;
}

.canvas {
    position: relative;
    width: 100%;
    min-height: 900px;
}

.piece {
    position: absolute;
    max-width: 340px;
}

.piece:nth-child(1) {
    top: 20px;
    left: 5%;
    transform: rotate(-2deg);
}

.piece:nth-child(2) {
    top: 320px;
    left: 40%;
    transform: rotate(3deg);
}

.piece img {
    width: 100%;
    display: block;
}

.piece .note {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #9a8f85;
    margin-top: 8px;
    text-transform: lowercase;
}
.page-title {
    font-size: 17px;
    font-weight: 300;
    text-transform: lowercase;
    margin-top: 40px;
    margin-bottom: 10px;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 1px solid #f5f0e8;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    color: #362b28;
    font-size: 24px;
    padding: 6px 12px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
        margin-top: 20px;
    }
    nav {
        display: none;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    nav.open {
        display: flex;
    }
}
