* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background-color: #dde9ef;
}

a {
    color: #0969da;
    text-decoration: none;
}

html {
    font-size: 10pt;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Source Sans Pro', 'Open Sans', Roboto, 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', 'Myriad Pro', 'Segoe UI', Myriad, Helvetica, 'Lucida Grande', 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', Tahoma, Geneva, Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
}

.header {
    overflow: hidden;
    background-color: #94949e;
    padding: 20px 10px;
    border-radius: 5px;
}

.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

.header a.logo {
    margin-left: 5vw;
    font-size: 25px;
    font-weight: bold;
}

.header a:hover {
    background-color: #d1d7d0;
    color: black;
}

.header a.active {
    background-color: #837475;
    color: white;
}

.header-right {
    margin-right: 5vw;
    float: right;
}

.description {
    max-width: 800px;
    margin: 15px auto;
    font-size: 1.8em;
    border-left: 2px solid #e85319;
    background-color: #e6ecef;
    padding-left: 10px;
    font-style: italic;
    font-family: Helvetica,Arial,sans-serif;
}

.content {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product {
    margin: 10px;
    padding: 10px;
    border-radius: 7px;
    background-color: #f4f2f2;
    width: 20vw;
    float: left;
    box-shadow: rgba(0,0,0,.05) 0 3px 15px;
    text-align: center;
}

.text-content {
    margin: 10px auto 0;
    padding: 1em;
    font-size: 140%;
    max-width: 1200px;
    background: white;
    box-shadow: rgba(0,0,0,.05) 0 3px 15px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
}

.text-content h1 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.25;
    border-bottom: 1px solid rgb(200, 200, 200);
    padding-bottom: 0.3em;
    margin-bottom: 16px;
}

.product h2 {
    font-size: 2em;
}

.product p {
    font-size: 1.2em;
    color:rgb(133, 132, 132);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #94949e;
}

.image {
    width: 100%;
    border-radius: 10px;
}

footer {
    margin-top: 10px;
    bottom:0;
    width: 100%;
    height:100px;
    font-size: 120%;
    text-align: center;
}

footer p {
    display: inline-block;
    border-bottom: 1px solid rgb(200, 200, 200);
    padding-bottom: 0.3em;
    margin-bottom: 16px;
}

@media screen and (max-width: 1000px) {
    .product {
        width: 30vw;
    }
}

@media screen and (max-width: 500px) {
    .product {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .content {
        margin: auto;
    }

    .header a {
        float: none;
        display: block;
        text-align: center;
    }
    
    .description {
        border-left: none;
        border-top: 2px solid #e85319;
        padding-right: 10px;
    }

    .header-right {
        float: none;
        margin: auto;
    }

    .header a.logo {
        margin: auto;
    }

    .image {
        max-height: 80vh;
    }
}