html {
    background-color: oldlace;
}

body {
    margin: 0px;
    padding: 0px;
}

a {
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease; /* Smooth scaling animation */
}

a:hover {
    transform: scale(1.5);
}

/* CSS code for the header */
.header {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 1%;
    padding-bottom: 1%;
    width: 100%;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    z-index: 5;
    background-color: oldlace;
}

.header-logo {
    margin-right: 10%;
    margin-left: 2%;
}

.header-item {
    font-family: Quicksand;
    text-align: center;
    font-size: x-large;
    font-weight: 500;
    margin-right: 5%;
    align-self: center;
}

.header-item:last-child {
    margin-right: 0;
}


/* Media query for the header */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .header-logo {
        display: none;
    }

    .header-item {
        margin-right: 0; /* Reset margin for stacking */
        margin-top: 5%; /* Space between items */
    }
}

.footer {
    background-color: darkslategray;
    align-self: center;
    width: 100%;
    padding: 2.5% 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    margin-left: 0%;
    color: whitesmoke;
    font-family: Quicksand;
    column-gap: 5%;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb {
    padding-top: 2%;
    margin-left: 10%;
    font-size: 24px;
    color: darkslategray;
    margin-bottom: 20px;
    font-family: Quicksand;
}

.breadcrumb a {
    display: inline-block;
    text-decoration: none;
    color: darkslategray;
    transition: transform 0.3s ease; /* Smooth scaling animation */
}

.breadcrumb a:hover {
    transform: scale(1.1); /* Scale up to 1.5 times on hover */
}

.breadcrumb span {
    color: darkslategray;
}