body {
    font-family: "Quicksand", sans-serif;
    background-color: #fff8ee;
    margin: 0;
}

/* Header */

header {
    background-color: #f4b860;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    font-family: "Quicksand", sans-serif;
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
}

nav a:hover {
    color: white;
}

.logo img {
    width: 125px;
    margin-right: 10px;
}

.links {
    font-size: 35px;
}

/* Product Sections */

.product {
    background-color: white;
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    border: 2px solid #f4b860;
}

.product img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

button {
    background-color: #f4b860;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #e8a64a;
}

@media (max-width: 768px) {

header {
    flex-direction: column;
    text-align: center;
}

.logo {
    flex-direction: column;
}

.logo img {
    margin-right: 0;
    margin-bottom: 10px;
}

nav {
    margin-top: 15px;
}

nav a {
    display: block;
    margin: 8px 0;
}

.product {
    width: 95%;
}

.product img {
    width: 100%;
    height: auto;
}

}