@font-face {
    font-family: "OutlastSerif";
    src: url('../images/OutlastSerif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    font-family: Arial, sans-serif;
    font-size: large;
    color: #333;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    height: 100%;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: white;
}

.logo img {
    height: 15vh;
}

nav {
    width: 100%;
    padding: 10px 0;
    background-color: #000000;
    color: #fff;
    text-align: center;
    font-size: 22pt;
}

    nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 15px;
    }

        nav a:hover {
            text-decoration: underline;
        }

section#Home {
    height: calc(100vh - 25vh); 
    background: url('../images/mandiesbass.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
}

.content#Home {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    padding: 2vw;
    font-size: large;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.content#Home h2 {
    font-family: "OutlastSerif";
    font-size: 4em;
    color: black;
}

.content#Home p {
    font-size: 2em;
    color: #333;
}

.content#Home .button {
    font-family: "OutlastSerif";
    display: inline-block;
    width: 20vw;
    height: 50vh;
    line-height: 10vh;
    height: 50px;
    line-height: 50px;
    font-size: 3em;
    padding: 10px 20px;
    color: #fff;
    background-color: #663399; 
    text-decoration: none;
    border-radius: 0; 
    text-align: center; 
}

.content#Home .button:hover {
    text-decoration: underline; 
}

section#About {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2vw;
}

.content#About h2 {
    font-family: "OutlastSerif";
    font-size: 4em;
    color: #663399;
    margin-bottom: 1em;
}

.content#About p {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
}

main#Store h3{
    font-family: "OutlastSerif";
}

.no-style {
    text-decoration: none;
    color: inherit;
}

.no-style:hover {
    text-decoration: none;
    color: inherit;
}

main#Store h2 {
    font-family: "OutlastSerif";
    font-size: 2em;
    color: #663399;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
}
.product-item {
    flex: 1 1 30%;
    margin: 10px;
    box-shadow: 0px 0px 10px #ccc;
    text-align: center;
    padding-top: 0px;
    padding: 2vw; 
    box-sizing: border-box;
}


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

main#Store{
    padding: 2vw;
    padding-bottom: 5vw;
}

.button#Store {
    font-family: "OutlastSerif";
    display: inline-block;
    width: 20vw;
    height: 50vh;
    line-height: 10vh;
    height: 50px;
    line-height: 50px;
    font-size: 3em;
    padding: .2vw .4vw;
    color: #fff;
    background-color: #663399; 
    text-decoration: none;
    border-radius: 0; 
    text-align: center; 
}

.button#Store:hover {
    text-decoration: underline; 
}

.product-details {
    text-align: center;
    max-width: 100vw;
    margin:  auto;
    padding-bottom: 60px;
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.product-info {
    margin: 10px 0;
}

    .product-info h2 {
        font-family: "OutlastSerif";
        font-size: 2em;
        color: #663399;
        margin-bottom: 0;
    }

.price {
    font-family: "OutlastSerif";
    font-size: 3.5vh;
    margin: 10px 0;
}

.description {
    margin: 10px 20px 20px;
}

.btn-add-cart {
    font-family: "OutlastSerif";
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 6vh;
    font-size: 4vh;
    padding: .2vh .5vh;
    color: #fff;
    background-color: #663399; 
    text-decoration: none;
    border-radius: 0; 
    text-align: center; 
}

.widget-contact {
    font-family: "OutlastSerif";
    width: 23%;
    margin-top: 60px;
    margin-left: 700px;
    background-color: #fff;
    border: 4px solid #663399;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: static;
}

footer {
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 0vh;
    width: 100%;
    height: 6vh;
    z-index: 5;
    padding-top: .5vh;
    font-size: 1em;
}


@media (max-width: 640px) {
    section#Home {
        height: calc(100vh - 0vh); 
    }
    .content#Home {
        width: 100%;
        padding: 5vw;
    }

    .content#Home h2 {
        font-size: 2.5em;
    }

    .content#Home p {
        font-size: 1em;
    }

    .content#Home .button {
        font-size: 1.5em;
        padding: 8px 16px;
    }

    section#About h2 {
        font-size: 2em;
    }

    section#About p {
        font-size: .5em;
    }

    section#About p#end{
        padding-top: 0;
        padding-bottom: 4vh;
    }

    main#Store{
        padding: 2vw;
        padding-bottom: 15vw;
    }

    .button#Store{
        font-size: 1.5em;
        padding: 5px 10px;
    }

    footer {
        height: 6vh; 
        padding-bottom: 1vh;
        font-size: 0.8em;
    }
}


@media (max-width: 1080px) and (min-width: 641px) {
    .content#Home {
        width: 90%;
        padding: 3vw;
    }

    .content#Home h2 {
        font-size: 3em;
    }

    .content#Home p {
        font-size: 1.5em;
    }

    .content#Home .button {
        font-size: 2em;
        padding: 10px 20px;
    }

    section#About h2 {
        font-size: 2.5em;
    }

    section#About p {
        font-size: 1.2em;
    }

    main#Store{
        padding: 2vw;
        padding-bottom: 10vw;
    }

    footer {
        height: 5vh; 
        font-size: 0.9em;
    }
}