body {
    background-color: bisque;
}

.product img {
    width: 100%;
    height: 70%;
    border: 1px solid;
    object-fit: cover;
    box-shadow: 3px 3px 15px 2px;
}

a {
    text-decoration: none;
    color: black;
    font-size: xx-large;
    font-family: "Story Script", sans-serif;
}

a:nth-child(even) {
    color: red;
}

a:hover {
    transform: scale(130%);
    text-shadow: 0px 0px 5px;
}

header {
    font-family: "Story Script", sans-serif;
    font-size: 50px;
    text-align: center;
    border-bottom: 1px solid grey;
    background-image: url("img/c10.jpg");
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h2 {
    margin: 0;
    color: white;
    text-shadow:
        1px 1px 2px black,
        0px 0px 15px black;
}


nav {
    display: flex;
    justify-content: space-around;
    align-content: center;
    border-bottom: 1px solid grey;

}

#storefront {
    margin-top: 20px;
    padding: 20px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    background-color: bisque;
}

.product {
    text-align: center;
    font-weight: bold;
}

.product img:hover {
    transform: scale(98%);
    box-shadow: 0px 0px 25px 20px;
}

footer {
    border-top: 1px solid gray;
    text-align: center;
    font-size: 20px;
    padding: 30px
}

aside {
    position: fixed;
    right: 0px;
    bottom: 0px;
}

aside img {
    width: 400px;
    filter: drop-shadow(5px 10px 20px rgb(0, 0, 0));
    transform: rotate(10deg);
}

aside p {
    font-size: 40px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 80px;
    left: 120px;
}


@media screen and (width <600px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        font-size: large;
    }

    header h2 {
        font-size: 40px;
    }

}