body {
    background-color: #f4ecd8;
    color: #5b4636;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}
header {
    background-color: #5b4636;
    color: #fff;
    display: flex;
    padding: 10px 20px 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 5px;
}
h1,
h2,
h3 {
    margin: 10px 0;
    font-weight: 600;
}
header div {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: baseline;
}
nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
nav a:hover {
    color: #fff3e3;
}
span {
    font-weight: 700;
}
.project-card,
.about,
.more {
    border: 2px solid #5b4636;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.project-card {
    text-transform: lowercase;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    width: 300px;
    font-weight: 700;
}

.project-card p {
    font-weight: 600;
    margin-top: -5px;
}

.about {
    margin-top: 2rem;
    text-align: left;
    font-size: larger;
    background-color: #e0c9ac83;
    padding: 20px;
    font-weight: 600;
}
.more {
    font-weight: 600;
    margin-top: 2rem;
    text-align: left;
    font-size: larger;
    background-color: #e0c9ac83;
    padding: 20px;
}
.more a,
.project-card a, .week a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more a:hover,
.project-card a:hover, .week a:hover {
    color: #0056b3;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    background-color: #fff;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}

@media (max-width: 768px) {
    header h3 {
        display: none;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav.nav-open {
        display: flex;
    }

    .menu-icon {
        display: flex;
    }
}

.project-card {
    animation: all 0.5s ease-in-out;
}
h1 span{
    font-size: large;
    font-weight: 600;
}
.week{
    margin-top: 2rem;
}
.week a{
    font-size:1.1rem;
    margin-right: 1.2rem;
}
.backtop{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1rem;
    margin: 1rem;
}
button {
    border: 2px solid #5b4636;
    background-color: #b49278;
    color: #fff;
    padding: 12px 24px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

button:hover {
    background-color: #a07b67;
    transform: translateY(-2px);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

button:active {
    background-color: #d5a886;
    transform: scale(0.95);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}